@@ -3391,9 +3391,10 @@ static RPCHelpMan bumpfee_helper(std::string method_name)
3391
3391
" The command will fail if the wallet or mempool contains a transaction that spends one of T's outputs.\n "
3392
3392
" By default, the new fee will be calculated automatically using the estimatesmartfee RPC.\n "
3393
3393
" The user can specify a confirmation target for estimatesmartfee.\n "
3394
- " Alternatively, the user can specify a fee_rate ( in " + CURRENCY_ATOM + " /vB) for the new transaction.\n "
3394
+ " Alternatively, the user can specify a fee rate in " + CURRENCY_ATOM + " /vB for the new transaction.\n "
3395
3395
" At a minimum, the new fee rate must be high enough to pay an additional new relay fee (incrementalfee\n "
3396
- " returned by getnetworkinfo) to enter the node's mempool.\n " ,
3396
+ " returned by getnetworkinfo) to enter the node's mempool.\n "
3397
+ " * WARNING: before version 0.21, fee_rate was in " + CURRENCY_UNIT + " /kvB. As of 0.21, fee_rate is in " + CURRENCY_ATOM + " /vB. *\n " ,
3397
3398
{
3398
3399
{" txid" , RPCArg::Type::STR_HEX, RPCArg::Optional::NO, " The txid to be bumped" },
3399
3400
{" options" , RPCArg::Type::OBJ, RPCArg::Optional::OMITTED_NAMED_ARG, " " ,
@@ -3402,7 +3403,8 @@ static RPCHelpMan bumpfee_helper(std::string method_name)
3402
3403
" or fee rate (for " + CURRENCY_UNIT + " /kB and " + CURRENCY_ATOM + " /B estimate modes)" },
3403
3404
{" fee_rate" , RPCArg::Type::AMOUNT, /* default */ " not set, fall back to wallet fee estimation" ,
3404
3405
" \n Specify a fee rate in " + CURRENCY_ATOM + " /vB instead of relying on the built-in fee estimator.\n "
3405
- " Must be at least 1 " + CURRENCY_ATOM + " /vB higher than the current transaction fee rate.\n " },
3406
+ " Must be at least 1 " + CURRENCY_ATOM + " /vB higher than the current transaction fee rate.\n "
3407
+ " WARNING: before version 0.21, fee_rate was in " + CURRENCY_UNIT + " /kvB. As of 0.21, fee_rate is in " + CURRENCY_ATOM + " /vB.\n " },
3406
3408
{" replaceable" , RPCArg::Type::BOOL, /* default */ " true" , " Whether the new transaction should still be\n "
3407
3409
" marked bip-125 replaceable. If true, the sequence numbers in the transaction will\n "
3408
3410
" be left unchanged from the original. If false, any input sequence numbers in the\n "
0 commit comments