diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-05-09 11:57:16 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-05-09 11:59:03 +0200 |
| commit | e29cfc48fc08ce7317a43d51b861de0fc0c24006 (patch) | |
| tree | cbeedfbd22170bc1f405f1ea729c0bae20b6c1e1 /src/test | |
| parent | Merge #7934: Improve rolling bloom filter performance and benchmark (diff) | |
| parent | Remove obsolete reference to CValidationState from UpdateCoins. (diff) | |
| download | discoin-e29cfc48fc08ce7317a43d51b861de0fc0c24006.tar.xz discoin-e29cfc48fc08ce7317a43d51b861de0fc0c24006.zip | |
Merge #7976: Remove obsolete reference to CValidationState from UpdateCoins.
c8b9248 Remove obsolete reference to CValidationState from UpdateCoins. (21E14)
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/coins_tests.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/coins_tests.cpp b/src/test/coins_tests.cpp index 129ce04e0..e69232655 100644 --- a/src/test/coins_tests.cpp +++ b/src/test/coins_tests.cpp @@ -297,8 +297,7 @@ BOOST_AUTO_TEST_CASE(updatecoins_simulation_test) CCoins &coins = result[tx.GetHash()]; coins.FromTx(tx, height); - CValidationState dummy; - UpdateCoins(tx, dummy, *(stack.back()), height); + UpdateCoins(tx, *(stack.back()), height); } // Once every 1000 iterations and at the end, verify the full cache. |