diff --git a/x/opchild/types/genesis.go b/x/opchild/types/genesis.go index 5024075c..46e22e9a 100644 --- a/x/opchild/types/genesis.go +++ b/x/opchild/types/genesis.go @@ -21,10 +21,12 @@ func NewGenesisState(params Params, validators []Validator) *GenesisState { // DefaultGenesisState gets the raw genesis raw message for testing func DefaultGenesisState() *GenesisState { return &GenesisState{ - Params: DefaultParams(), - LastValidatorPowers: []LastValidatorPower{}, - Validators: []Validator{}, - Exported: false, + Params: DefaultParams(), + LastValidatorPowers: []LastValidatorPower{}, + Validators: []Validator{}, + Exported: false, + NextL2Sequence: 1, + FinalizedL1Sequences: []uint64{}, } }