mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-02-08 12:44:34 +00:00
checkedReject
> errReject
for CI failure (#4909)
The `SignedContributionAndProof: invalid contribution signature` check is sometimes hit around fork boundaries when running local testnet. To avoid failing CI, revert this isntance to a plain `errReject` until the underlying problem is addressed.
This commit is contained in:
parent
6458133f5c
commit
5b3c211285
@ -1217,7 +1217,7 @@ proc validateContribution*(
|
||||
let x = await contributionFut
|
||||
case x
|
||||
of BatchResult.Invalid:
|
||||
return dag.checkedReject(
|
||||
return errReject( # TODO Triggers in local tests around fork transition
|
||||
"SignedContributionAndProof: invalid contribution signature")
|
||||
of BatchResult.Timeout:
|
||||
beacon_contributions_dropped_queue_full.inc()
|
||||
|
Loading…
x
Reference in New Issue
Block a user