diff options
author | João Barbosa <joao.paulo.barbosa@gmail.com> | 2019-05-21 10:08:30 +0100 |
---|---|---|
committer | João Barbosa <joao.paulo.barbosa@gmail.com> | 2019-05-22 08:24:54 +0100 |
commit | be4efb165ab7ff5824de9a46aa06eca654b7513f (patch) | |
tree | 855f9fb4343776d2ff1200fa1993ec866622ad2d /src/wallet/rpcwallet.cpp | |
parent | 2d1583ee6aff4b68dc46bcb87eb7a85f90b465c3 (diff) |
rpc: Mention getwalletinfo where a rescan is triggered
Diffstat (limited to 'src/wallet/rpcwallet.cpp')
-rw-r--r-- | src/wallet/rpcwallet.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index 96a74a338a..71d62a47dc 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -3452,7 +3452,8 @@ UniValue rescanblockchain(const JSONRPCRequest& request) if (request.fHelp || request.params.size() > 2) { throw std::runtime_error( RPCHelpMan{"rescanblockchain", - "\nRescan the local blockchain for wallet related transactions.\n", + "\nRescan 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"}, {"stop_height", RPCArg::Type::NUM, RPCArg::Optional::OMITTED_NAMED_ARG, "the last block height that should be scanned. If none is provided it will rescan up to the tip at return time of this call."}, |