Closes #3084. Log txid when removing expired txs from mempool.

This commit is contained in:
Simon 2018-03-16 11:46:39 -07:00
parent a510b4752d
commit eb13862667
1 changed files with 1 additions and 0 deletions

View File

@ -271,6 +271,7 @@ void CTxMemPool::removeExpired(unsigned int nBlockHeight)
for (const CTransaction& tx : transactionsToRemove) {
list<CTransaction> removed;
remove(tx, removed, true);
LogPrint("mempool", "Removing expired txid: %s\n", tx.GetHash().ToString());
}
}