Skip to content

Commit

Permalink
fix(simsx): make use chainID from config
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Jan 6, 2025
1 parent 07d5168 commit fe7e6e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simsx/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ func NewSimulationAppInstance[T SimulationApp](
appOptions := make(simtestutil.AppOptionsMap)
appOptions[flags.FlagHome] = workDir
appOptions[server.FlagInvCheckPeriod] = cli.FlagPeriodValue
opts := []func(*baseapp.BaseApp){baseapp.SetChainID(SimAppChainID)}
opts := []func(*baseapp.BaseApp){baseapp.SetChainID(tCfg.ChainID)}
if tCfg.FauxMerkle {
opts = append(opts, FauxMerkleModeOpt)
}
Expand Down

0 comments on commit fe7e6e0

Please sign in to comment.