diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-07-19 20:30:18 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-07-29 12:29:51 +0200 |
commit | fac674db200e6b2d5b32069335fb24e713d7b69f (patch) | |
tree | c34e2b54b07a899b5181cd69f846135051109b53 /src/validation.h | |
parent | faec851b6eb7e65e28cdcae50d6dc86fafa0f91c (diff) |
Pass mempool pointer to UnloadBlockIndex
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 53503768aa..c76edd142a 100644 --- a/src/validation.h +++ b/src/validation.h @@ -160,7 +160,7 @@ void LoadExternalBlockFile(const CChainParams& chainparams, FILE* fileIn, FlatFi /** Ensures we have a genesis block in the block tree, possibly writing one to disk. */ bool LoadGenesisBlock(const CChainParams& chainparams); /** Unload database information */ -void UnloadBlockIndex(); +void UnloadBlockIndex(CTxMemPool* mempool); /** Run an instance of the script checking thread */ void ThreadScriptCheck(int worker_num); /** |