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/txmempool.cpp | |
| 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/txmempool.cpp')
| -rw-r--r-- | src/txmempool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp index a6070f526..aa5df6ca4 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -720,7 +720,7 @@ void CTxMemPool::check(const CCoinsViewCache *pcoins) const else { CValidationState state; assert(CheckInputs(tx, state, mempoolDuplicate, false, 0, false, NULL)); - UpdateCoins(tx, state, mempoolDuplicate, 1000000); + UpdateCoins(tx, mempoolDuplicate, 1000000); } } unsigned int stepsSinceLastRemove = 0; @@ -734,7 +734,7 @@ void CTxMemPool::check(const CCoinsViewCache *pcoins) const assert(stepsSinceLastRemove < waitingOnDependants.size()); } else { assert(CheckInputs(entry->GetTx(), state, mempoolDuplicate, false, 0, false, NULL)); - UpdateCoins(entry->GetTx(), state, mempoolDuplicate, 1000000); + UpdateCoins(entry->GetTx(), mempoolDuplicate, 1000000); stepsSinceLastRemove = 0; } } |