remove extraneous scope

This commit is contained in:
andrewtoth 2019-04-27 10:16:33 -04:00
parent 6ad372a973
commit 1b602f6fed

View file

@ -1780,7 +1780,6 @@ CWallet::ScanResult CWallet::ScanForWalletTransactions(const uint256& start_bloc
WalletLogPrintf("Rescan started from block %s...\n", start_block.ToString());
{
fAbortRescan = false;
ShowProgress(strprintf("%s " + _("Rescanning..."), GetDisplayName()), 0); // show rescan progress in GUI as dialog or on splashscreen, if -rescan on startup
uint256 tip_hash;
@ -1866,7 +1865,6 @@ CWallet::ScanResult CWallet::ScanForWalletTransactions(const uint256& start_bloc
} else {
WalletLogPrintf("Rescan completed in %15dms\n", GetTimeMillis() - start_time);
}
}
return result;
}