mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
Fix IS vote expiration/cleanup: (#1316)
- vote should be removed when corresponding orphan vote expires - fix CInstantSend::SyncTransaction: mapTxLockVotes is indexed by vote hash, not by tx hash (use votes from candidates and from orhpan vote map to avoid looping through the whole vote map)
This commit is contained in:
parent
8c6f756362
commit
bd3978fd4b
@ -623,6 +623,7 @@ void CInstantSend::CheckAndRemove()
|
|||||||
if(GetTime() - itOrphanVote->second.GetTimeCreated() > ORPHAN_VOTE_SECONDS) {
|
if(GetTime() - itOrphanVote->second.GetTimeCreated() > ORPHAN_VOTE_SECONDS) {
|
||||||
LogPrint("instantsend", "CInstantSend::CheckAndRemove -- Removing expired orphan vote: txid=%s masternode=%s\n",
|
LogPrint("instantsend", "CInstantSend::CheckAndRemove -- Removing expired orphan vote: txid=%s masternode=%s\n",
|
||||||
itOrphanVote->second.GetTxHash().ToString(), itOrphanVote->second.GetMasternodeOutpoint().ToStringShort());
|
itOrphanVote->second.GetTxHash().ToString(), itOrphanVote->second.GetMasternodeOutpoint().ToStringShort());
|
||||||
|
mapTxLockVotes.erase(itOrphanVote->first);
|
||||||
mapTxLockVotesOrphan.erase(itOrphanVote++);
|
mapTxLockVotesOrphan.erase(itOrphanVote++);
|
||||||
} else {
|
} else {
|
||||||
++itOrphanVote;
|
++itOrphanVote;
|
||||||
@ -796,16 +797,38 @@ void CInstantSend::SyncTransaction(const CTransaction& tx, const CBlock* pblock)
|
|||||||
LogPrint("instantsend", "CInstantSend::SyncTransaction -- txid=%s nHeightNew=%d lock candidate updated\n",
|
LogPrint("instantsend", "CInstantSend::SyncTransaction -- txid=%s nHeightNew=%d lock candidate updated\n",
|
||||||
txHash.ToString(), nHeightNew);
|
txHash.ToString(), nHeightNew);
|
||||||
itLockCandidate->second.SetConfirmedHeight(nHeightNew);
|
itLockCandidate->second.SetConfirmedHeight(nHeightNew);
|
||||||
|
// Loop through outpoint locks
|
||||||
|
std::map<COutPoint, COutPointLock>::iterator itOutpointLock = itLockCandidate->second.mapOutPointLocks.begin();
|
||||||
|
while(itOutpointLock != itLockCandidate->second.mapOutPointLocks.end()) {
|
||||||
|
// Check corresponding lock votes
|
||||||
|
std::vector<CTxLockVote> vVotes = itOutpointLock->second.GetVotes();
|
||||||
|
std::vector<CTxLockVote>::iterator itVote = vVotes.begin();
|
||||||
|
std::map<uint256, CTxLockVote>::iterator it;
|
||||||
|
while(itVote != vVotes.end()) {
|
||||||
|
uint256 nVoteHash = itVote->GetHash();
|
||||||
|
LogPrint("instantsend", "CInstantSend::SyncTransaction -- txid=%s nHeightNew=%d vote %s updated\n",
|
||||||
|
txHash.ToString(), nHeightNew, nVoteHash.ToString());
|
||||||
|
it = mapTxLockVotes.find(nVoteHash);
|
||||||
|
if(it != mapTxLockVotes.end()) {
|
||||||
|
it->second.SetConfirmedHeight(nHeightNew);
|
||||||
|
}
|
||||||
|
++itVote;
|
||||||
|
}
|
||||||
|
++itOutpointLock;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check lock votes
|
// check orphan votes
|
||||||
std::map<uint256, CTxLockVote>::iterator itVote = mapTxLockVotes.find(txHash);
|
std::map<uint256, CTxLockVote>::iterator itOrphanVote = mapTxLockVotesOrphan.begin();
|
||||||
if(itVote != mapTxLockVotes.end()) {
|
while(itOrphanVote != mapTxLockVotesOrphan.end()) {
|
||||||
|
if(itOrphanVote->second.GetTxHash() == txHash) {
|
||||||
LogPrint("instantsend", "CInstantSend::SyncTransaction -- txid=%s nHeightNew=%d vote %s updated\n",
|
LogPrint("instantsend", "CInstantSend::SyncTransaction -- txid=%s nHeightNew=%d vote %s updated\n",
|
||||||
txHash.ToString(), nHeightNew, itVote->second.GetHash().ToString());
|
txHash.ToString(), nHeightNew, itOrphanVote->first.ToString());
|
||||||
itVote->second.SetConfirmedHeight(nHeightNew);
|
mapTxLockVotes[itOrphanVote->first].SetConfirmedHeight(nHeightNew);
|
||||||
}
|
}
|
||||||
|
++itOrphanVote;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// CTxLockRequest
|
// CTxLockRequest
|
||||||
@ -1037,7 +1060,18 @@ bool COutPointLock::AddVote(const CTxLockVote& vote)
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool COutPointLock::HasMasternodeVoted(const COutPoint& outpointMasternodeIn)
|
std::vector<CTxLockVote> COutPointLock::GetVotes() const
|
||||||
|
{
|
||||||
|
std::vector<CTxLockVote> vRet;
|
||||||
|
std::map<COutPoint, CTxLockVote>::const_iterator itVote = mapMasternodeVotes.begin();
|
||||||
|
while(itVote != mapMasternodeVotes.end()) {
|
||||||
|
vRet.push_back(itVote->second);
|
||||||
|
++itVote;
|
||||||
|
}
|
||||||
|
return vRet;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool COutPointLock::HasMasternodeVoted(const COutPoint& outpointMasternodeIn) const
|
||||||
{
|
{
|
||||||
return mapMasternodeVotes.count(outpointMasternodeIn);
|
return mapMasternodeVotes.count(outpointMasternodeIn);
|
||||||
}
|
}
|
||||||
|
@ -208,7 +208,8 @@ public:
|
|||||||
COutPoint GetOutpoint() const { return outpoint; }
|
COutPoint GetOutpoint() const { return outpoint; }
|
||||||
|
|
||||||
bool AddVote(const CTxLockVote& vote);
|
bool AddVote(const CTxLockVote& vote);
|
||||||
bool HasMasternodeVoted(const COutPoint& outpointMasternodeIn);
|
std::vector<CTxLockVote> GetVotes() const;
|
||||||
|
bool HasMasternodeVoted(const COutPoint& outpointMasternodeIn) const;
|
||||||
int CountVotes() const { return mapMasternodeVotes.size(); }
|
int CountVotes() const { return mapMasternodeVotes.size(); }
|
||||||
bool IsReady() const { return CountVotes() >= SIGNATURES_REQUIRED; }
|
bool IsReady() const { return CountVotes() >= SIGNATURES_REQUIRED; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user