We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fcdbd0c + be18fab commit 1a1372dCopy full SHA for 1a1372d
rolling-shutter/keyperimpl/gnosis/validatorsyncer.go
@@ -222,11 +222,9 @@ func (v *ValidatorSyncer) filterEvents(
222
continue
223
}
224
} else {
225
- validSignature := validatorregistry.VerifyAggregateSignature(sig, pubKeys, msg)
226
- if !validSignature {
227
- evLog.Warn().Msg("ignoring registration message with invalid signature")
228
- continue
229
- }
+ // TODO: this disables aggregate message
+ evLog.Warn().Msg("ignoring validator registration message as the version is not compatible")
+ continue
230
231
232
filteredEvents = append(filteredEvents, event)
0 commit comments