diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-09-07 18:16:34 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-09-08 01:55:59 +0200 |
| commit | 24697c40ee6739b812259140042d426c81179977 (patch) | |
| tree | 4271e1ad212f40655bc36b280c19089efcd32ba8 /src/rpc/client.cpp | |
| parent | Merge #10793: Changing &var[0] to var.data() (diff) | |
| download | discoin-24697c40ee6739b812259140042d426c81179977.tar.xz discoin-24697c40ee6739b812259140042d426c81179977.zip | |
rpc: update cli for estimatefee argument rename
The first argument of estimatesmartfee was renamed from nblocks to
conf_target in 06bcdb8da64502a64df03f3c89fbc6ccb72cd349. Update the
client-side table as well.
Diffstat (limited to 'src/rpc/client.cpp')
| -rw-r--r-- | src/rpc/client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/client.cpp b/src/rpc/client.cpp index 417945378..7c1c4c55a 100644 --- a/src/rpc/client.cpp +++ b/src/rpc/client.cpp @@ -116,7 +116,7 @@ static const CRPCConvertParam vRPCConvertParams[] = { "getrawmempool", 0, "verbose" }, { "estimatefee", 0, "nblocks" }, { "estimatesmartfee", 0, "nblocks" }, - { "estimaterawfee", 0, "nblocks" }, + { "estimaterawfee", 0, "conf_target" }, { "estimaterawfee", 1, "threshold" }, { "prioritisetransaction", 1, "dummy" }, { "prioritisetransaction", 2, "fee_delta" }, |