File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
rolling-shutter/keyperimpl/gnosis Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -222,11 +222,14 @@ func (v *ValidatorSyncer) filterEvents(
222
222
continue
223
223
}
224
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
- }
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
+ // }
230
233
}
231
234
232
235
filteredEvents = append (filteredEvents , event )
You can’t perform that action at this time.
0 commit comments