From 225886cc606a1d469ffdc9afd97ed1a508d58756 Mon Sep 17 00:00:00 2001 From: Anh Minh <1phamminh0811@gmail.com> Date: Tue, 17 Sep 2024 00:42:19 +0700 Subject: [PATCH] dispatch when simulate special --- baseapp/baseapp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/baseapp/baseapp.go b/baseapp/baseapp.go index 48d3a8601316..58836f07fc0d 100644 --- a/baseapp/baseapp.go +++ b/baseapp/baseapp.go @@ -799,7 +799,7 @@ func (app *BaseApp) runMsgs(ctx sdk.Context, msgs []sdk.Msg, mode runTxMode) (*s // NOTE: GasWanted is determined by the AnteHandler and GasUsed by the GasMeter. for i, msg := range msgs { - if mode != runTxModeDeliver && mode != runTxModeSimulate { + if mode != runTxModeDeliver && mode != runTxModeSimulate && mode != runTxModeSimulateSpecial { break }