From 394c22a860f42100404cede2b9affba8b162f855 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 12:02:28 +0100 Subject: [PATCH] fix(simsx): make use chainID from config (backport #23185) (#23196) Co-authored-by: mmsqe --- simsx/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simsx/runner.go b/simsx/runner.go index 291f517a74..38bd099ad3 100644 --- a/simsx/runner.go +++ b/simsx/runner.go @@ -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) }