clean up tx lock votes on expiration

This commit is contained in:
Evan Duffield 2015-02-06 12:58:03 -07:00
parent 3b35672bb8
commit 3a72da77ac

View File

@ -445,6 +445,9 @@ void CleanTransactionLocksList()
mapTxLockReq.erase(it->second.txHash);
mapTxLockReqRejected.erase(it->second.txHash);
BOOST_FOREACH(CConsensusVote& v, it->second.vecConsensusVotes)
mapTxLockVote.erase(v.GetHash());
}
mapTxLocks.erase(it++);