File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1722,10 +1722,10 @@ CWallet::ScanResult CWallet::ScanForWalletTransactions(const uint256& start_bloc
17221722 }
17231723 ShowProgress (strprintf (" %s " + _ (" Rescanning..." ), GetDisplayName ()), 100 ); // hide progress dialog in GUI
17241724 if (block_height && fAbortRescan ) {
1725- WalletLogPrintf (" Rescan aborted at block %d. Progress=%f\n " , block_height. get_value_or ( 0 ) , progress_current);
1725+ WalletLogPrintf (" Rescan aborted at block %d. Progress=%f\n " , * block_height, progress_current);
17261726 result.status = ScanResult::USER_ABORT;
17271727 } else if (block_height && ShutdownRequested ()) {
1728- WalletLogPrintf (" Rescan interrupted by shutdown request at block %d. Progress=%f\n " , block_height. get_value_or ( 0 ) , progress_current);
1728+ WalletLogPrintf (" Rescan interrupted by shutdown request at block %d. Progress=%f\n " , * block_height, progress_current);
17291729 result.status = ScanResult::USER_ABORT;
17301730 }
17311731 }
You can’t perform that action at this time.
0 commit comments