diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2020-01-22 16:53:42 -0500 |
---|---|---|
committer | Russell Yanofsky <russ@yanofsky.org> | 2020-03-31 08:36:02 -0500 |
commit | c0d07dc4cba7634cde4e8bf586557772f3248a42 (patch) | |
tree | e8a1326bb11fa6578cdd90d6cb23306190245307 /src/wallet/rpcwallet.cpp | |
parent | 1be8ff280c78c30baabae9429c53c0bebb89c44d (diff) |
wallet: Avoid use of Chain::Lock in CWallet::ScanForWalletTransactions
This is a step toward removing the Chain::Lock class and reducing cs_main
locking.
This change affects behavior in a few small ways.
- If there's no max_height specified, percentage progress is measured ending at
wallet last processed block instead of node tip
- More consistent error reporting: Early check to see if start_block is on the
active chain is removed, so start_block is always read and the triggers an
error if it's unavailable
Diffstat (limited to 'src/wallet/rpcwallet.cpp')
-rw-r--r-- | src/wallet/rpcwallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 6bda33c6c9..3b7a5d2736 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -3569,7 +3569,7 @@ UniValue rescanblockchain(const JSONRPCRequest& request) } CWallet::ScanResult result = - pwallet->ScanForWalletTransactions(start_block, stop_height, reserver, true /* fUpdate */); + pwallet->ScanForWalletTransactions(start_block, start_height, stop_height, reserver, true /* fUpdate */); switch (result.status) { case CWallet::ScanResult::SUCCESS: break; |