aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/rpcwallet.cpp
diff options
context:
space:
mode:
authorFabian Jahr <fjahr@protonmail.com>2020-03-31 17:07:33 +0200
committerFabian Jahr <fjahr@protonmail.com>2020-03-31 17:07:33 +0200
commitbda84a08a0ac92dff6cadc99cf9bb8c3fadd7e13 (patch)
treef2a049de0bd6c32cf69e92a4260c7678b76afa6e /src/wallet/rpcwallet.cpp
parent5f9cd62f33fb4d440173b9c376cadf4887e81e9d (diff)
downloadbitcoin-bda84a08a0ac92dff6cadc99cf9bb8c3fadd7e13.tar.xz
rpc: Add documentation for deactivating settxfee
Diffstat (limited to 'src/wallet/rpcwallet.cpp')
-rw-r--r--src/wallet/rpcwallet.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/rpcwallet.cpp b/src/wallet/rpcwallet.cpp
index 5d34e592db..3b8c0e8362 100644
--- a/src/wallet/rpcwallet.cpp
+++ b/src/wallet/rpcwallet.cpp
@@ -2318,7 +2318,8 @@ static UniValue settxfee(const JSONRPCRequest& request)
}
RPCHelpMan{"settxfee",
- "\nSet the transaction fee per kB for this wallet. Overrides the global -paytxfee command line parameter.\n",
+ "\nSet the transaction fee per kB for this wallet. Overrides the global -paytxfee command line parameter.\n"
+ "Can be deactivated by passing 0 as the fee. In that case automatic fee selection will be used by default.\n",
{
{"amount", RPCArg::Type::AMOUNT, RPCArg::Optional::NO, "The transaction fee in " + CURRENCY_UNIT + "/kB"},
},