diff options
author | glozow <gloriajzhao@gmail.com> | 2021-12-02 14:46:24 +0000 |
---|---|---|
committer | glozow <gloriajzhao@gmail.com> | 2021-12-02 14:49:19 +0000 |
commit | ddd74ff65c471c5c25815ac0643d16ea0d51f58f (patch) | |
tree | 7125fccb959bb998e4c67328324505840b00ba07 /src/txmempool.h | |
parent | c4efc4db5484910ac33ba41aa76f4e23639d6f33 (diff) |
clean up txmempool includes
Diffstat (limited to 'src/txmempool.h')
-rw-r--r-- | src/txmempool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/txmempool.h b/src/txmempool.h index 6ba474e228..f87ecc9cd0 100644 --- a/src/txmempool.h +++ b/src/txmempool.h @@ -14,7 +14,6 @@ #include <utility> #include <vector> -#include <chain.h> #include <coins.h> #include <consensus/amount.h> #include <indirectmap.h> @@ -26,12 +25,13 @@ #include <util/epochguard.h> #include <util/hasher.h> -#include <boost/multi_index_container.hpp> #include <boost/multi_index/hashed_index.hpp> #include <boost/multi_index/ordered_index.hpp> #include <boost/multi_index/sequenced_index.hpp> +#include <boost/multi_index_container.hpp> class CBlockIndex; +class CChain; class CChainState; extern RecursiveMutex cs_main; |