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
2
2
3
3
import (
4
4
"context"
5
- "fmt"
6
5
"math"
7
6
"math/big"
8
7
@@ -194,13 +193,10 @@ func (v *ValidatorSyncer) filterEvents(
194
193
evLog .Warn ().Msg ("ignoring registration message with undecodable signature" )
195
194
continue
196
195
}
197
- fmt .Printf ("signature original: %X\n " , event .Signature )
198
- fmt .Printf ("validator pubkey original: %s\n " , validator .Data .Validator .PubkeyHex )
199
196
validSignature := validatorregistry .VerifySignature (sig , pubkey , msg )
200
197
if ! validSignature {
201
- fmt .Printf ("%X\n " , event .Signature )
202
198
evLog .Warn ().Msg ("ignoring registration message with invalid signature" )
203
- // continue
199
+ continue
204
200
}
205
201
206
202
filteredEvents = append (filteredEvents , event )
You can’t perform that action at this time.
0 commit comments