aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.cpp
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-07-17 19:22:17 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2018-07-18 09:39:31 +0200
commit99be644966c63e9917161f97574905551e44360f (patch)
tree682881948349139988845accecbf56bad4cf5de9 /src/txmempool.cpp
parent66ed2423434ab9712ebd1625abdd55d8a693d905 (diff)
downloadbitcoin-99be644966c63e9917161f97574905551e44360f.tar.xz
Remove redundant unused variables
Diffstat (limited to 'src/txmempool.cpp')
-rw-r--r--src/txmempool.cpp1
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++;