From 4c3bb73045446ac75d79713501566488c0189acd Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Mon, 17 Dec 2018 16:11:06 +0100 Subject: [PATCH] Remove call to mnodeman.PoSeBan --- src/instantx.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/instantx.cpp b/src/instantx.cpp index 2afb982dd..dbe7e848e 100644 --- a/src/instantx.cpp +++ b/src/instantx.cpp @@ -468,7 +468,8 @@ void CInstantSend::UpdateVotedOutpoints(const CTxLockVote& vote, CTxLockCandidat txLockCandidate.MarkOutpointAsAttacked(vote.GetOutpoint()); it2->second.MarkOutpointAsAttacked(vote.GetOutpoint()); // apply maximum PoSe ban score to this masternode i.e. PoSe-ban it instantly - mnodeman.PoSeBan(vote.GetMasternodeOutpoint()); + // TODO Call new PoSe system when it's ready + //mnodeman.PoSeBan(vote.GetMasternodeOutpoint()); // NOTE: This vote must be relayed further to let all other nodes know about such // misbehaviour of this masternode. This way they should also be able to construct // conflicting lock and PoSe-ban this masternode.