diff options
| author | MarcoFalke <[email protected]> | 2016-08-25 12:48:23 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-08-25 14:59:38 +0200 |
| commit | fa6dc9f0e5eac8ec473b63adfd43635005778f46 (patch) | |
| tree | 6628086e259f0e470cd3160becc11ec9873ede35 /src/txmempool.cpp | |
| parent | Merge #8487: Persist the datadir after option reset (diff) | |
| download | discoin-fa6dc9f0e5eac8ec473b63adfd43635005778f46.tar.xz discoin-fa6dc9f0e5eac8ec473b63adfd43635005778f46.zip | |
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 b631c4848..0a00d757a 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); |