diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-04-25 14:45:45 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-04-25 14:46:29 +0200 |
| commit | 46880ed2fd961c29b5fe4f841c747951bc706912 (patch) | |
| tree | 0cd98d12ed1f7c3c5eae078c4a0f16b5abcd76ae /src/wallet/test | |
| parent | Merge #7881: Update release process (diff) | |
| parent | List solvability in listunspent output and improve help (diff) | |
| download | discoin-46880ed2fd961c29b5fe4f841c747951bc706912.tar.xz discoin-46880ed2fd961c29b5fe4f841c747951bc706912.zip | |
Merge #7688: List solvability in listunspent output and improve help
c3932b3 List solvability in listunspent output and improve help (Pieter Wuille)
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 b759a6b2e..387b22358 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); } |