diff options
author | Andrew Chow <achow101-github@achow101.com> | 2020-11-30 16:13:12 -0500 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-11-30 16:38:07 -0500 |
commit | 51e2cd322cfc7271af309e3a2243448a2ec0cad4 (patch) | |
tree | 60b67cc4ca0f3a41604fe4fee8f6af54111f983c /src/wallet/feebumper.cpp | |
parent | 81d5af42f4dba5b68a597536cad7f61894dc22a3 (diff) |
Have CalculateMaximumSignedTxSize also compute tx weight
Diffstat (limited to 'src/wallet/feebumper.cpp')
-rw-r--r-- | src/wallet/feebumper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/feebumper.cpp b/src/wallet/feebumper.cpp index 6cbad14de8..0d4612a2a7 100644 --- a/src/wallet/feebumper.cpp +++ b/src/wallet/feebumper.cpp @@ -190,7 +190,7 @@ Result CreateRateBumpTransaction(CWallet& wallet, const uint256& txid, const CCo if (coin_control.m_feerate) { // The user provided a feeRate argument. // We calculate this here to avoid compiler warning on the cs_wallet lock - const int64_t maxTxSize = CalculateMaximumSignedTxSize(*wtx.tx, &wallet); + const int64_t maxTxSize = CalculateMaximumSignedTxSize(*wtx.tx, &wallet).first; Result res = CheckFeeRate(wallet, wtx, *new_coin_control.m_feerate, maxTxSize, errors); if (res != Result::OK) { return res; |