29
29
#include < util/translation.h>
30
30
#include < util/url.h>
31
31
#include < util/vector.h>
32
- #include < validation.h>
33
32
#include < wallet/coincontrol.h>
34
33
#include < wallet/context.h>
35
34
#include < wallet/feebumper.h>
@@ -3383,7 +3382,7 @@ RPCHelpMan signrawtransactionwithwallet()
3383
3382
static RPCHelpMan bumpfee_helper (std::string method_name)
3384
3383
{
3385
3384
bool want_psbt = method_name == " psbtbumpfee" ;
3386
- const std::string incremental_fee{CFeeRate (DEFAULT_MIN_RELAY_TX_FEE ).ToString (FeeEstimateMode::SAT_VB)};
3385
+ const std::string incremental_fee{CFeeRate (DEFAULT_INCREMENTAL_RELAY_FEE ).ToString (FeeEstimateMode::SAT_VB)};
3387
3386
3388
3387
return RPCHelpMan{method_name,
3389
3388
" \n Bumps the fee of an opt-in-RBF transaction T, replacing it with a new transaction B.\n "
@@ -3406,7 +3405,7 @@ static RPCHelpMan bumpfee_helper(std::string method_name)
3406
3405
{" conf_target" , RPCArg::Type::NUM, /* default */ " wallet -txconfirmtarget" , " Confirmation target in blocks\n " },
3407
3406
{" fee_rate" , RPCArg::Type::AMOUNT, /* default */ " not set, fall back to wallet fee estimation" ,
3408
3407
" \n Specify a fee rate in " + CURRENCY_ATOM + " /vB instead of relying on the built-in fee estimator.\n "
3409
- " Must be at least " + incremental_fee + " " + CURRENCY_ATOM + " /vB higher than the current transaction fee rate.\n "
3408
+ " Must be at least " + incremental_fee + " higher than the current transaction fee rate.\n "
3410
3409
" WARNING: before version 0.21, fee_rate was in " + CURRENCY_UNIT + " /kvB. As of 0.21, fee_rate is in " + CURRENCY_ATOM + " /vB.\n " },
3411
3410
{" replaceable" , RPCArg::Type::BOOL, /* default */ " true" , " Whether the new transaction should still be\n "
3412
3411
" marked bip-125 replaceable. If true, the sequence numbers in the transaction will\n "
0 commit comments