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
- "psbt" field is only returned in psbtbumpfee and not bumpfee
- bumpfee raises if privkeys are disabled, so drop "Only returned when wallet private keys are enabled."
- add missing space in RPC example
{RPCResult::Type::STR, "psbt", "The base64-encoded unsigned PSBT of the new transaction."},
3436
-
},
3437
-
want_psbt ? std::vector<RPCResult>{} : std::vector<RPCResult>{{RPCResult::Type::STR_HEX, "txid", "The id of the new transaction. Only returned when wallet private keys are enabled."}}
3438
-
),
3433
+
RPCResult::Type::OBJ, "", "", Cat(
3434
+
want_psbt ?
3435
+
std::vector<RPCResult>{{RPCResult::Type::STR, "psbt", "The base64-encoded unsigned PSBT of the new transaction."}} :
3436
+
std::vector<RPCResult>{{RPCResult::Type::STR_HEX, "txid", "The id of the new transaction."}},
3439
3437
{
3440
3438
{RPCResult::Type::STR_AMOUNT, "origfee", "The fee of the replaced transaction."},
3441
3439
{RPCResult::Type::STR_AMOUNT, "fee", "The fee of the new transaction."},
0 commit comments