Skip to content

Commit

Permalink
Merge branch 'fix/iro_proto_update' into mtsitrin/1250-revised-genesi…
Browse files Browse the repository at this point in the history
…s-bridge-impl
  • Loading branch information
mtsitrin committed Oct 7, 2024
2 parents 9b1ce77 + cb700dd commit 396959e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/sequencer/keeper/msg_server_create_sequencer.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func (k msgServer) CreateSequencer(goCtx context.Context, msg *types.MsgCreateSe

// check pre launch time.
// skipped if no pre launch time is set
if rollapp.PreLaunchTime.After(ctx.BlockTime()) {
if rollapp.PreLaunchTime != nil && rollapp.PreLaunchTime.After(ctx.BlockTime()) {
return nil, types.ErrBeforePreLaunchTime
}

Expand Down

0 comments on commit 396959e

Please sign in to comment.