File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
rolling-shutter/keyperimpl/gnosis Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package gnosis
22
33import (
44 "context"
5- "fmt"
65 "math"
76 "math/big"
87
@@ -194,13 +193,10 @@ func (v *ValidatorSyncer) filterEvents(
194193 evLog .Warn ().Msg ("ignoring registration message with undecodable signature" )
195194 continue
196195 }
197- fmt .Printf ("signature original: %X\n " , event .Signature )
198- fmt .Printf ("validator pubkey original: %s\n " , validator .Data .Validator .PubkeyHex )
199196 validSignature := validatorregistry .VerifySignature (sig , pubkey , msg )
200197 if ! validSignature {
201- fmt .Printf ("%X\n " , event .Signature )
202198 evLog .Warn ().Msg ("ignoring registration message with invalid signature" )
203- // continue
199+ continue
204200 }
205201
206202 filteredEvents = append (filteredEvents , event )
You can’t perform that action at this time.
0 commit comments