diff options
| author | MeshCollider <[email protected]> | 2017-10-14 12:34:04 +1300 |
|---|---|---|
| committer | MeshCollider <[email protected]> | 2017-10-14 12:34:04 +1300 |
| commit | 43f76f6acdef3504c072ef7ff8cb92221a92b158 (patch) | |
| tree | a95ae9216f279ac533a9d114bef06209f18871bc /src | |
| parent | Merge #11456: Replace relevant services logic with a function suite. (diff) | |
| download | discoin-43f76f6acdef3504c072ef7ff8cb92221a92b158.tar.xz discoin-43f76f6acdef3504c072ef7ff8cb92221a92b158.zip | |
Add missing comma from rescanblockchain
Diffstat (limited to 'src')
| -rw-r--r-- | src/wallet/rpcwallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp index e23ef57db..d6989add8 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -3233,7 +3233,7 @@ UniValue rescanblockchain(const JSONRPCRequest& request) "}\n" "\nExamples:\n" + HelpExampleCli("rescanblockchain", "100000 120000") - + HelpExampleRpc("rescanblockchain", "100000 120000") + + HelpExampleRpc("rescanblockchain", "100000, 120000") ); } |