diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-12-07 11:31:28 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-12-07 14:59:33 +0100 |
commit | faac31521bb7ecbf999541cf918d3750ff589de4 (patch) | |
tree | 57527364e2c2440ef0f93b6f971b1baa573ab7a6 /src/wallet | |
parent | eab63b971d5fc3408214a958678a235bf454af99 (diff) |
Remove unused and confusing CTransaction constructor
Diffstat (limited to 'src/wallet')
-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 7a8bc0b7f3..1bbfa197d7 100644 --- a/src/wallet/feebumper.cpp +++ b/src/wallet/feebumper.cpp @@ -215,7 +215,7 @@ Result CreateRateBumpTransaction(CWallet& wallet, const uint256& txid, const CCo // We cannot source new unconfirmed inputs(bip125 rule 2) new_coin_control.m_min_depth = 1; - CTransactionRef tx_new = MakeTransactionRef(); + CTransactionRef tx_new; CAmount fee_ret; int change_pos_in_out = -1; // No requested location for change bilingual_str fail_reason; |