rpc: fix code comment for bumpfee/psbtbumpfee output

pull/826/head
Jon Atack 4 years ago
parent 5cb7ac23fb
commit 4f504f826b
No known key found for this signature in database
GPG Key ID: 4F5721B3D0E3921D

@ -3526,8 +3526,8 @@ static RPCHelpMan bumpfee_helper(std::string method_name)
UniValue result(UniValue::VOBJ); UniValue result(UniValue::VOBJ);
// If wallet private keys are enabled, return the new transaction id, // For bumpfee, return the new transaction id.
// otherwise return the base64-encoded unsigned PSBT of the new transaction. // For psbtbumpfee, return the base64-encoded unsigned PSBT of the new transaction.
if (!want_psbt) { if (!want_psbt) {
if (!feebumper::SignTransaction(*pwallet, mtx)) { if (!feebumper::SignTransaction(*pwallet, mtx)) {
throw JSONRPCError(RPC_WALLET_ERROR, "Can't sign transaction."); throw JSONRPCError(RPC_WALLET_ERROR, "Can't sign transaction.");

Loading…
Cancel
Save