mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-19 12:10:19 +01:00
refactor: Explicitly convert atomic<int> to int
This commit is contained in:
@@ -2085,7 +2085,7 @@ static RPCHelpMan scantxoutset()
|
||||
// no scan in progress
|
||||
return NullUniValue;
|
||||
}
|
||||
result.pushKV("progress", g_scan_progress);
|
||||
result.pushKV("progress", g_scan_progress.load());
|
||||
return result;
|
||||
} else if (request.params[0].get_str() == "abort") {
|
||||
CoinsViewScanReserver reserver;
|
||||
|
||||
Reference in New Issue
Block a user