diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2015-11-19 16:05:37 +0100 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2017-10-12 11:59:21 -0700 |
commit | c77170fbdbdfcd2ba830a1755450a2e5469f4e35 (patch) | |
tree | fca101eb24308c9f68f7cf629e3263dff6015fae /src/rpc | |
parent | 777519bd96f68c18150a0f5942f8f97a91937f5e (diff) |
[Wallet] add rescanblockchain <start_height> <stop_height> RPC command
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/client.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rpc/client.cpp b/src/rpc/client.cpp index 4179453782..d471cef079 100644 --- a/src/rpc/client.cpp +++ b/src/rpc/client.cpp @@ -140,6 +140,8 @@ static const CRPCConvertParam vRPCConvertParams[] = { "echojson", 7, "arg7" }, { "echojson", 8, "arg8" }, { "echojson", 9, "arg9" }, + { "rescanblockchain", 0, "start_height"}, + { "rescanblockchain", 1, "stop_height"}, }; class CRPCConvertTable |