Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bindings/bin/l2staking_deployed.hex

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions bindings/bindings/l2staking.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bindings/bindings/l2staking_more.go

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion node/core/sequencers.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ func (e *Executor) sequencerSetUpdates() ([][]byte, error) {
blsPK, err := decodeBlsPubKey(stakesInfo[i].BlsKey)
if err != nil {
e.logger.Error("failed to decode bls key", "key bytes", hexutil.Encode(stakesInfo[i].BlsKey), "error", err)
return nil, err
continue
// return nil, err
}
// sequencerSet2 is the latest updated sequencer set which is considered as the next validator set for tendermint
if slices.Contains(sequencerSet2, stakesInfo[i].Addr) {
Expand Down
Loading