diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-07-17 19:22:17 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-07-18 09:39:31 +0200 |
commit | 99be644966c63e9917161f97574905551e44360f (patch) | |
tree | 682881948349139988845accecbf56bad4cf5de9 /src/txmempool.cpp | |
parent | 66ed2423434ab9712ebd1625abdd55d8a693d905 (diff) |
Remove redundant unused variables
Diffstat (limited to 'src/txmempool.cpp')
-rw-r--r-- | src/txmempool.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/txmempool.cpp b/src/txmempool.cpp index 8090172e3f..1db006ecd1 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -716,7 +716,6 @@ void CTxMemPool::check(const CCoinsViewCache *pcoins) const while (!waitingOnDependants.empty()) { const CTxMemPoolEntry* entry = waitingOnDependants.front(); waitingOnDependants.pop_front(); - CValidationState state; if (!mempoolDuplicate.HaveInputs(entry->GetTx())) { waitingOnDependants.push_back(entry); stepsSinceLastRemove++; |