diff options
author | Carl Dong <contact@carldong.me> | 2020-09-16 16:18:51 -0400 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2021-02-18 14:43:28 -0500 |
commit | d0da7ea57ab932eca956458fb3633585ff3c0003 (patch) | |
tree | ac597a9612534151d791149a981e1cb1f2066d93 /src/validation.h | |
parent | 3a205c43dc03cc833daba93087279402f640965b (diff) |
validation: Pass in chainstate to ::LoadMempool
Diffstat (limited to 'src/validation.h')
-rw-r--r-- | src/validation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.h b/src/validation.h index d03c8801b6..cc59b8f706 100644 --- a/src/validation.h +++ b/src/validation.h @@ -1024,7 +1024,7 @@ CBlockFileInfo* GetBlockFileInfo(size_t n); bool DumpMempool(const CTxMemPool& pool); /** Load the mempool from disk. */ -bool LoadMempool(CTxMemPool& pool); +bool LoadMempool(CTxMemPool& pool, CChainState& active_chainstate); //! Check whether the block associated with this index entry is pruned or not. inline bool IsBlockPruned(const CBlockIndex* pblockindex) |