Skip to content

Commit

Permalink
--amend
Browse files Browse the repository at this point in the history
  • Loading branch information
josibake committed Dec 12, 2023
1 parent 8c88530 commit 1ca9a7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/rpc/spend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ std::vector<CRecipient> ParseOutputs(const UniValue& outputs_in, const UniValue&
std::set<int> set_sffo;
if (options.exists("subtractFeeFromOutputs") || options.exists("subtract_fee_from_outputs") ) {
UniValue sffo = (options.exists("subtract_fee_from_outputs") ? options["subtract_fee_from_outputs"] : options["subtractFeeFromOutputs"]).get_array();
set_sffo = ParseSubtractFeeFromOutputs(sffo, outputs.getKeys());
set_sffo = InterpretSubtractFeeFromOutputInstructions(sffo, outputs.getKeys());
}
return ParseRecipients(outputs, set_sffo);
}
Expand Down

0 comments on commit 1ca9a7f

Please sign in to comment.