Skip to content

Commit 8dd9349

Browse files
authored
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 a34fb6d commit 8dd9349

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/llmq/quorums_chainlocks.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ void CChainLocksHandler::ProcessNewChainLock(NodeId from, const llmq::CChainLock
104104
LogPrintf("CChainLocksHandler::%s -- invalid CLSIG (%s), peer=%d\n", __func__, clsig.ToString(), from);
105105
if (from != -1) {
106106
LOCK(cs_main);
107-
Misbehaving(from, 100);
107+
Misbehaving(from, 10);
108108
}
109109
return;
110110
}

0 commit comments

Comments
 (0)