Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt committed Sep 26, 2024
1 parent 76c6bb6 commit c2d5333
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/simulation/simulate.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func SimulateFromSeed(
nextValidators := validators
if len(nextValidators) == 0 {
tb.Skip("skipping: empty validator set in genesis")
return params, accs, nil
return true, params, nil
}

var (
Expand Down Expand Up @@ -249,7 +249,7 @@ func SimulateFromSeed(
nextValidators = updateValidators(tb, r, params, validators, res.ValidatorUpdates, eventStats.Tally)
if len(nextValidators) == 0 {
tb.Skip("skipping: empty validator set")
return exportedParams, accs, err
return true, params, nil
}

// update the exported params
Expand Down

0 comments on commit c2d5333

Please sign in to comment.