aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/test/coinselector_tests.cpp
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-09-21 11:03:21 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2018-09-21 11:03:21 +0200
commitb6718e373ed425fa2440ddd8f1b05c76b782dc2b (patch)
tree4e710e94ee3946bac22b1932d3b982102a24155f /src/wallet/test/coinselector_tests.cpp
parent8f464549c46db2954d7b64d1feb200eb35f2e7e8 (diff)
downloadbitcoin-b6718e373ed425fa2440ddd8f1b05c76b782dc2b.tar.xz
tests: Use MakeUnique to construct objects owned by unique_ptrs
Diffstat (limited to 'src/wallet/test/coinselector_tests.cpp')
-rw-r--r--src/wallet/test/coinselector_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/test/coinselector_tests.cpp b/src/wallet/test/coinselector_tests.cpp
index 6d1d09d5a5..21857df081 100644
--- a/src/wallet/test/coinselector_tests.cpp
+++ b/src/wallet/test/coinselector_tests.cpp
@@ -65,7 +65,7 @@ static void add_coin(const CAmount& nValue, int nAge = 6*24, bool fIsFromMe = fa
// so stop vin being empty, and cache a non-zero Debit to fake out IsFromMe()
tx.vin.resize(1);
}
- std::unique_ptr<CWalletTx> wtx(new CWalletTx(&testWallet, MakeTransactionRef(std::move(tx))));
+ std::unique_ptr<CWalletTx> wtx = MakeUnique<CWalletTx>(&testWallet, MakeTransactionRef(std::move(tx)));
if (fIsFromMe)
{
wtx->fDebitCached = true;