diff options
author | Sishir Giri <sishirg27@gmail.com> | 2020-07-12 12:52:02 -0700 |
---|---|---|
committer | Sishir Giri <sishirg27@gmail.com> | 2020-09-26 17:57:26 -0700 |
commit | d5863c0b3e20d56acf7246008b7832efde68ab21 (patch) | |
tree | 899055a8ef8fd8a49a6a86f410144cbf8639a65f /src/wallet/feebumper.cpp | |
parent | 1b313cacc99a1b372238f9036abed5491f9d28f7 (diff) |
[send] Make send RPCs return fee reason
Diffstat (limited to 'src/wallet/feebumper.cpp')
-rw-r--r-- | src/wallet/feebumper.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/feebumper.cpp b/src/wallet/feebumper.cpp index cacf306891..6cbad14de8 100644 --- a/src/wallet/feebumper.cpp +++ b/src/wallet/feebumper.cpp @@ -219,7 +219,8 @@ Result CreateRateBumpTransaction(CWallet& wallet, const uint256& txid, const CCo CAmount fee_ret; int change_pos_in_out = -1; // No requested location for change bilingual_str fail_reason; - if (!wallet.CreateTransaction(recipients, tx_new, fee_ret, change_pos_in_out, fail_reason, new_coin_control, false)) { + FeeCalculation fee_calc_out; + if (!wallet.CreateTransaction(recipients, tx_new, fee_ret, change_pos_in_out, fail_reason, new_coin_control, fee_calc_out, false)) { errors.push_back(Untranslated("Unable to create transaction.") + Untranslated(" ") + fail_reason); return Result::WALLET_ERROR; } |