Skip to content

Commit

Permalink
Disable check centralized sequencer.
Browse files Browse the repository at this point in the history
  • Loading branch information
tnv1 committed Jan 3, 2024
1 parent 9bdc8f6 commit 7200bc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions types/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ func NewFromGenesisDoc(genDoc *types.GenesisDoc) (State, error) {
return State{}, fmt.Errorf("error in genesis doc: %w", err)
}

if len(genDoc.Validators) != 1 {
return State{}, fmt.Errorf("must have exactly 1 validator (the centralized sequencer)")
}
// if len(genDoc.Validators) != 1 {
// return State{}, fmt.Errorf("must have exactly 1 validator (the centralized sequencer)")
// }

s := State{
Version: InitStateVersion,
Expand Down

0 comments on commit 7200bc8

Please sign in to comment.