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/qt | |
parent | faec851b6eb7e65e28cdcae50d6dc86fafa0f91c (diff) |
Pass mempool pointer to UnloadBlockIndex
Diffstat (limited to 'src/qt')
-rw-r--r-- | src/qt/test/apptests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/test/apptests.cpp b/src/qt/test/apptests.cpp index 443e2d047d..b880a99baf 100644 --- a/src/qt/test/apptests.cpp +++ b/src/qt/test/apptests.cpp @@ -83,7 +83,7 @@ void AppTests::appTests() // Reset global state to avoid interfering with later tests. LogInstance().DisconnectTestLogger(); AbortShutdown(); - UnloadBlockIndex(); + UnloadBlockIndex(/* mempool */ nullptr); WITH_LOCK(::cs_main, g_chainman.Reset()); } |