diff options
author | MeshCollider <dobsonsa68@gmail.com> | 2017-10-14 12:34:04 +1300 |
---|---|---|
committer | MeshCollider <dobsonsa68@gmail.com> | 2017-10-14 12:34:04 +1300 |
commit | 43f76f6acdef3504c072ef7ff8cb92221a92b158 (patch) | |
tree | a95ae9216f279ac533a9d114bef06209f18871bc | |
parent | 326a5652e0d25fdb60c337ef4f1c98a63e0748f0 (diff) |
Add missing comma from rescanblockchain
-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 e23ef57db0..d6989add89 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") ); } |