diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2016-03-14 19:22:11 +0100 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2016-03-14 19:22:11 +0100 |
commit | c3932b32700a210b5fbf36e32bddac604dec9288 (patch) | |
tree | 16616ff839756fce2b18515d91b0375adc30f7b7 /src/wallet/test | |
parent | 48f39058315c908c360acb596923cbc090119480 (diff) |
List solvability in listunspent output and improve help
Diffstat (limited to 'src/wallet/test')
-rw-r--r-- | src/wallet/test/wallet_tests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/test/wallet_tests.cpp b/src/wallet/test/wallet_tests.cpp index e84d588026..06c9c903e4 100644 --- a/src/wallet/test/wallet_tests.cpp +++ b/src/wallet/test/wallet_tests.cpp @@ -48,7 +48,7 @@ static void add_coin(const CAmount& nValue, int nAge = 6*24, bool fIsFromMe = fa wtx->fDebitCached = true; wtx->nDebitCached = 1; } - COutput output(wtx, nInput, nAge, true); + COutput output(wtx, nInput, nAge, true, true); vCoins.push_back(output); } |