mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 23:18:15 -05:00
Fix Multiclient E2E Runs (#10660)
This commit is contained in:
@@ -114,6 +114,12 @@ func validatorsParticipating(conns ...*grpc.ClientConn) error {
|
||||
|
||||
partRate := participation.Participation.GlobalParticipationRate
|
||||
expected := float32(expectedParticipation)
|
||||
if participation.Epoch > 0 && participation.Epoch.Sub(1) == helpers.BellatrixE2EForkEpoch {
|
||||
// Reduce Participation requirement to 95% to account for longer EE calls for
|
||||
// the merge block. Target and head will likely be missed for a few validators at
|
||||
// slot 0.
|
||||
expected = 0.95
|
||||
}
|
||||
if partRate < expected {
|
||||
st, err := debugClient.GetBeaconStateV2(context.Background(), ð.StateRequestV2{StateId: []byte("head")})
|
||||
if err != nil {
|
||||
|
||||
Reference in New Issue
Block a user