From b4dc415f1e5059d19f709364a69a057cd86372db Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Thu, 23 Dec 2021 10:46:20 -0500 Subject: [PATCH] Log when we are done doing a partial rescan --- src/wallet/rpcdump.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp index e24dfe15a..db2727923 100644 --- a/src/wallet/rpcdump.cpp +++ b/src/wallet/rpcdump.cpp @@ -184,6 +184,7 @@ UniValue rescan(const UniValue& params, bool fHelp, const CPubKey& mypk) } else { pwalletMain->ScanForWalletTransactions(chainActive.Genesis(),update); } + LogPrintf("Done rescanning from height=%d\n", nRescanHeight); //TODO: can we return something more useful? return NullUniValue; }