Skip to content

Commit 1a1372d

Browse files
Merge pull request #591 from shutter-network/chore/disable-v1-validator-registrations
disable aggregate validator registration message
2 parents fcdbd0c + be18fab commit 1a1372d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

rolling-shutter/keyperimpl/gnosis/validatorsyncer.go

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -222,11 +222,9 @@ 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
230228
}
231229

232230
filteredEvents = append(filteredEvents, event)

0 commit comments

Comments
 (0)