diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp --- a/src/wallet/rpcdump.cpp +++ b/src/wallet/rpcdump.cpp @@ -119,7 +119,8 @@ "during that time, other rpc calls\n" "may report that the imported key exists but related transactions are " "still missing, leading to temporarily incorrect/bogus balances and " - "unspent outputs until rescan completes.\n", + "unspent outputs until rescan completes.\n" + "Note: Use \"getwalletinfo\" to query the scanning progress.\n", { {"privkey", RPCArg::Type::STR, RPCArg::Optional::NO, "The private key (see dumpprivkey)"}, @@ -231,7 +232,8 @@ RPCHelpMan{ "abortrescan", "Stops current wallet rescan triggered by an RPC call, e.g. by an " - "importprivkey call.\n", + "importprivkey call.\n" + "Note: Use \"getwalletinfo\" to query the scanning progress.\n", {}, RPCResults{}, RPCExamples{"\nImport a private key\n" + @@ -272,7 +274,8 @@ "Hint: use importmulti to import more than one address.\n" "\nNote: If you import a non-standard raw script in hex form, outputs " "sending to it will be treated\n" - "as change, and not show up in many RPCs.\n", + "as change, and not show up in many RPCs.\n" + "Note: Use \"getwalletinfo\" to query the scanning progress.\n", { {"address", RPCArg::Type::STR, RPCArg::Optional::NO, "The Bitcoin address (or hex-encoded script)"}, @@ -528,7 +531,8 @@ "during that time, other rpc calls\n" "may report that the imported pubkey exists but related transactions " "are still missing, leading to temporarily incorrect/bogus balances " - "and unspent outputs until rescan completes.\n", + "and unspent outputs until rescan completes.\n" + "Note: Use \"getwalletinfo\" to query the scanning progress.\n", { {"pubkey", RPCArg::Type::STR, RPCArg::Optional::NO, "The hex-encoded public key"}, @@ -628,7 +632,8 @@ RPCHelpMan{ "importwallet", "Imports keys from a wallet dump file (see dumpwallet). Requires a " - "new wallet backup to include imported keys.\n", + "new wallet backup to include imported keys.\n" + "Note: Use \"getwalletinfo\" to query the scanning progress.\n", { {"filename", RPCArg::Type::STR, RPCArg::Optional::NO, "The wallet file"}, @@ -1548,7 +1553,8 @@ "be returned.\n" "Conversely, if all the private keys are provided and the " "address/script is spendable, the watchonly option must be set to " - "false, or a warning will be returned.\n", + "false, or a warning will be returned.\n" + "Note: Use \"getwalletinfo\" to query the scanning progress.\n", { {"requests", RPCArg::Type::ARR, diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -3884,7 +3884,8 @@ RPCHelpMan{ "rescanblockchain", - "Rescan the local blockchain for wallet related transactions.\n", + "Rescan the local blockchain for wallet related transactions.\n" + "Note: Use \"getwalletinfo\" to query the scanning progress.\n", { {"start_height", RPCArg::Type::NUM, /* default */ "0", "block height where the rescan should start"},