diff options
| author | Jon Atack <[email protected]> | 2020-12-04 11:20:39 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-12-10 11:37:36 +0100 |
| commit | 06c84232b310e6196c814894537ad935d773fe98 (patch) | |
| tree | c19798a13a834a6dd9cd991c544c8e3f910a1e11 /src | |
| parent | Send and require SENDADDRV2 before VERACK (diff) | |
| download | discoin-06c84232b310e6196c814894537ad935d773fe98.tar.xz discoin-06c84232b310e6196c814894537ad935d773fe98.zip | |
wallet, bugfix: allow send to take string fee rate values
Github-Pull: #20573
Rebased-From: ce207d6b93d35bc02fcd2dd28f1fd95869261d43
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 9ba10e6c3..e8c3ae888 100644 --- a/src/wallet/rpcwallet.cpp +++ b/src/wallet/rpcwallet.cpp @@ -4083,7 +4083,7 @@ static RPCHelpMan send() UniValueType(), // outputs (ARR or OBJ, checked later) UniValue::VNUM, // conf_target UniValue::VSTR, // estimate_mode - UniValue::VNUM, // fee_rate + UniValueType(), // fee_rate, will be checked by AmountFromValue() in SetFeeEstimateMode() UniValue::VOBJ, // options }, true ); |