diff options
author | MarcoFalke <falke.marco@gmail.com> | 2016-08-25 12:48:23 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-08-25 14:59:38 +0200 |
commit | fa6dc9f0e5eac8ec473b63adfd43635005778f46 (patch) | |
tree | 6628086e259f0e470cd3160becc11ec9873ede35 /src/txmempool.cpp | |
parent | d26234a9e2fa93c5340330a9de612555fc329620 (diff) |
Remove 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 b631c48484..0a00d757a2 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -576,7 +576,6 @@ void CTxMemPool::removeForReorg(const CCoinsViewCache *pcoins, unsigned int nMem void CTxMemPool::removeConflicts(const CTransaction &tx, std::list<CTransaction>& removed) { // Remove transactions which depend on inputs of tx, recursively - list<CTransaction> result; LOCK(cs); BOOST_FOREACH(const CTxIn &txin, tx.vin) { auto it = mapNextTx.find(txin.prevout); |