diff options
author | Fabian Jahr <fjahr@protonmail.com> | 2020-03-31 17:07:33 +0200 |
---|---|---|
committer | Fabian Jahr <fjahr@protonmail.com> | 2020-03-31 17:07:33 +0200 |
commit | bda84a08a0ac92dff6cadc99cf9bb8c3fadd7e13 (patch) | |
tree | f2a049de0bd6c32cf69e92a4260c7678b76afa6e | |
parent | 5f9cd62f33fb4d440173b9c376cadf4887e81e9d (diff) |
rpc: Add documentation for deactivating settxfee
-rw-r--r-- | src/wallet/rpcwallet.cpp | 3 |
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"}, }, |