aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/feebumper.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-12-07 11:31:28 +0100
committerMarcoFalke <falke.marco@gmail.com>2020-12-07 14:59:33 +0100
commitfaac31521bb7ecbf999541cf918d3750ff589de4 (patch)
tree57527364e2c2440ef0f93b6f971b1baa573ab7a6 /src/wallet/feebumper.cpp
parenteab63b971d5fc3408214a958678a235bf454af99 (diff)
downloadbitcoin-faac31521bb7ecbf999541cf918d3750ff589de4.tar.xz
Remove unused and confusing CTransaction constructor
Diffstat (limited to 'src/wallet/feebumper.cpp')
-rw-r--r--src/wallet/feebumper.cpp2
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;