diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-08-26 13:23:57 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-08-26 13:24:12 +0200 |
| commit | 12892dbb9fb6d6f46505d7b9caf8ae6905601c7f (patch) | |
| tree | ab45b4993516c16e963964d2e6a91e24d10f5ce6 /src/txmempool.cpp | |
| parent | Merge #8581: [wallet] rpc: Drop misleading option (diff) | |
| parent | Remove unused variables (diff) | |
| download | discoin-12892dbb9fb6d6f46505d7b9caf8ae6905601c7f.tar.xz discoin-12892dbb9fb6d6f46505d7b9caf8ae6905601c7f.zip | |
Merge #8590: Remove unused variables
fa6dc9f Remove unused variables (MarcoFalke)
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); |