diff options
| author | Jonas Schnelli <[email protected]> | 2015-11-19 16:05:37 +0100 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2017-10-12 11:59:21 -0700 |
| commit | c77170fbdbdfcd2ba830a1755450a2e5469f4e35 (patch) | |
| tree | fca101eb24308c9f68f7cf629e3263dff6015fae /src/rpc/client.cpp | |
| parent | Merge #11246: github-merge: Coalesce git fetches (diff) | |
| download | discoin-c77170fbdbdfcd2ba830a1755450a2e5469f4e35.tar.xz discoin-c77170fbdbdfcd2ba830a1755450a2e5469f4e35.zip | |
[Wallet] add rescanblockchain <start_height> <stop_height> RPC command
Diffstat (limited to 'src/rpc/client.cpp')
| -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 417945378..d471cef07 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 |