Skip to content

Commit 924ee8f

Browse files
codablockpanleone
authored andcommitted
Don't be too harsh for invalid CLSIGs (#2742)
The local node might be the bad one actually as it might not have catched up with the chain. In that case, LLMQs might be different for the sending and receiving node.
1 parent f255314 commit 924ee8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/llmq/quorums_chainlocks.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ void CChainLocksHandler::ProcessNewChainLock(NodeId from, const llmq::CChainLock
106106
LogPrintf("CChainLocksHandler::%s -- invalid CLSIG (%s), peer=%d\n", __func__, clsig.ToString(), from);
107107
if (from != -1) {
108108
LOCK(cs_main);
109-
Misbehaving(from, 100);
109+
Misbehaving(from, 10);
110110
}
111111
return;
112112
}

0 commit comments

Comments
 (0)