Skip to content

Commit 271bbc9

Browse files
disable aggregate validator registration message
1 parent fcdbd0c commit 271bbc9

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

rolling-shutter/keyperimpl/gnosis/validatorsyncer.go

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -222,11 +222,14 @@ func (v *ValidatorSyncer) filterEvents(
222222
continue
223223
}
224224
} else {
225-
validSignature := validatorregistry.VerifyAggregateSignature(sig, pubKeys, msg)
226-
if !validSignature {
227-
evLog.Warn().Msg("ignoring registration message with invalid signature")
228-
continue
229-
}
225+
// TODO: this disables aggregate message
226+
evLog.Warn().Msg("ignoring validator registration message as the version is not compatible")
227+
continue
228+
// validSignature := validatorregistry.VerifyAggregateSignature(sig, pubKeys, msg)
229+
// if !validSignature {
230+
// evLog.Warn().Msg("ignoring registration message with invalid signature")
231+
// continue
232+
// }
230233
}
231234

232235
filteredEvents = append(filteredEvents, event)

0 commit comments

Comments
 (0)