diff options
| author | Luke Dashjr <[email protected]> | 2017-04-21 16:41:01 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2017-05-23 20:46:14 +0000 |
| commit | 870824e919474c5b39da73fe73199f8453fd540f (patch) | |
| tree | 369f7fb7e0bc5087e025bb1c5321bba468409c00 /src/rpc/client.cpp | |
| parent | Merge #10429: tests: fix spurious addrman test failure (diff) | |
| download | discoin-870824e919474c5b39da73fe73199f8453fd540f.tar.xz discoin-870824e919474c5b39da73fe73199f8453fd540f.zip | |
RPC/Mining: Restore API compatibility for prioritisetransaction
Breaking API serves no purpose other than to be incompatible with older versions and other implementations that do support priority
Diffstat (limited to 'src/rpc/client.cpp')
| -rw-r--r-- | src/rpc/client.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rpc/client.cpp b/src/rpc/client.cpp index a3a692c14..ed83d1da1 100644 --- a/src/rpc/client.cpp +++ b/src/rpc/client.cpp @@ -112,7 +112,8 @@ static const CRPCConvertParam vRPCConvertParams[] = { "estimaterawfee", 0, "nblocks" }, { "estimaterawfee", 1, "threshold" }, { "estimaterawfee", 2, "horizon" }, - { "prioritisetransaction", 1, "fee_delta" }, + { "prioritisetransaction", 1, "priority_delta" }, + { "prioritisetransaction", 2, "fee_delta" }, { "setban", 2, "bantime" }, { "setban", 3, "absolute" }, { "setnetworkactive", 0, "state" }, |