diff options
| author | Jonas Schnelli <[email protected]> | 2017-07-03 14:20:28 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2017-07-03 14:20:42 +0200 |
| commit | 7397af9d314dd01ca3699efbe6eec68f62a6ef2b (patch) | |
| tree | 1747b25e97a57b1410d7886b815e5935a302f2a5 | |
| parent | Merge #10683: rpc: Move the `generate` RPC call to rpcwallet (diff) | |
| parent | fix typo in help text for removeprunedfunds (diff) | |
| download | discoin-7397af9d314dd01ca3699efbe6eec68f62a6ef2b.tar.xz discoin-7397af9d314dd01ca3699efbe6eec68f62a6ef2b.zip | |
Merge #10728: fix typo in help text for removeprunedfunds
ecb4fc382 fix typo in help text for removeprunedfunds (Akio Nakamura)
Tree-SHA512: 2603851f1ac90bc0b90ced6355b0056e4cb658303cb2cd03ee0827ed0053157ebb87de48076f4d4f556991bfdbdb65d0a68a8dbd275c501cee4c9b5746a9562b
| -rw-r--r-- | src/wallet/rpcdump.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp index 0fe241235..b4b5e8c25 100644 --- a/src/wallet/rpcdump.cpp +++ b/src/wallet/rpcdump.cpp @@ -362,7 +362,7 @@ UniValue removeprunedfunds(const JSONRPCRequest& request) "\nExamples:\n" + HelpExampleCli("removeprunedfunds", "\"a8d0c0184dde994a09ec054286f1ce581bebf46446a512166eae7628734ea0a5\"") + "\nAs a JSON-RPC call\n" - + HelpExampleRpc("removprunedfunds", "\"a8d0c0184dde994a09ec054286f1ce581bebf46446a512166eae7628734ea0a5\"") + + HelpExampleRpc("removeprunedfunds", "\"a8d0c0184dde994a09ec054286f1ce581bebf46446a512166eae7628734ea0a5\"") ); LOCK2(cs_main, pwallet->cs_wallet); |