From 080b47d9ce6288e1725857b3026291981ef75e34 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Fri, 24 Jul 2020 11:03:31 +0200 Subject: rpc: reset scantxoutset progress on finish Github-Pull: #19362 Rebased-From: 8c4129b4540f4f739413ed9a6fbfc78afc252f42 --- src/rpc/blockchain.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/rpc/blockchain.cpp') diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 90cf8d6d14..509107d88a 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -2109,6 +2109,7 @@ public: if (g_scan_in_progress.exchange(true)) { return false; } + CHECK_NONFATAL(g_scan_progress == 0); m_could_reserve = true; return true; } @@ -2116,6 +2117,7 @@ public: ~CoinsViewScanReserver() { if (m_could_reserve) { g_scan_in_progress = false; + g_scan_progress = 0; } } }; @@ -2228,7 +2230,6 @@ static RPCHelpMan scantxoutset() std::vector input_txos; std::map coins; g_should_abort_scan = false; - g_scan_progress = 0; int64_t count = 0; std::unique_ptr pcursor; CBlockIndex* tip; -- cgit v1.2.3