You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"The command will pay the additional fee by reducing change outputs or adding inputs when necessary. It may add a new change output if one does not already exist.\n"
3374
3374
"All inputs in the original transaction will be included in the replacement transaction.\n"
3375
3375
"The command will fail if the wallet or mempool contains a transaction that spends one of T's outputs.\n"
3376
-
"By default, the new fee will be calculated automatically using estimatesmartfee.\n"
3376
+
"By default, the new fee will be calculated automatically using the estimatesmartfee RPC.\n"
3377
3377
"The user can specify a confirmation target for estimatesmartfee.\n"
3378
3378
"Alternatively, the user can specify a fee_rate (" + CURRENCY_UNIT + " per kB) for the new transaction.\n"
3379
3379
"At a minimum, the new fee rate must be high enough to pay an additional new relay fee (incrementalfee\n"
throwJSONRPCError(RPC_INVALID_PARAMETER, "conf_target can't be set with fee_rate. Please provide either a confirmation target in blocks for automatic fee estimation, or an explicit fee rate.");
3462
+
throwJSONRPCError(RPC_INVALID_PARAMETER, "Cannot specify both conf_target and fee_rate. Please provide either a confirmation target in blocks for automatic fee estimation, or an explicit fee rate.");
assert_raises_rpc_error(-8, "conf_target can't be set with fee_rate. Please provide either a confirmation target in blocks for automatic fee estimation, or an explicit fee rate.", rbf_node.bumpfee, rbfid, {"fee_rate": NORMAL, "confTarget": 1})
assert_raises_rpc_error(-8, "conf_target can't be set with fee_rate. Please provide either a confirmation target in blocks for automatic fee estimation, or an explicit fee rate.", rbf_node.bumpfee, rbfid, {"fee_rate":0.00001, "confTarget": 1})
180
-
181
-
# Bumping to just above minrelay should fail to increase total fee enough, at least
182
-
assert_raises_rpc_error(-8, "Insufficient total fee", rbf_node.bumpfee, rbfid, {"fee_rate": INSUFFICIENT})
183
177
178
+
# For each fee mode, bumping to just above minrelay should fail to increase the total fee enough.
0 commit comments