From 93eab3a29c62838734e009a84c233adaa0b090a2 Mon Sep 17 00:00:00 2001 From: Anh Minh <1phamminh0811@gmail.com> Date: Fri, 24 May 2024 22:49:40 +0700 Subject: [PATCH] remove register gas decorator --- custom/auth/ante/ante.go | 1 - 1 file changed, 1 deletion(-) diff --git a/custom/auth/ante/ante.go b/custom/auth/ante/ante.go index 8ff628612..7dabfce5a 100644 --- a/custom/auth/ante/ante.go +++ b/custom/auth/ante/ante.go @@ -79,7 +79,6 @@ func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error) { ante.NewSetUpContextDecorator(), // outermost AnteDecorator. SetUpContext must be called first wasmkeeper.NewLimitSimulationGasDecorator(options.WasmConfig.SimulationGasLimit), wasmkeeper.NewCountTXDecorator(options.TXCounterStoreKey), - wasmkeeper.NewGasRegisterDecorator(options.WasmKeeper.GetGasRegister()), ante.NewExtensionOptionsDecorator(options.ExtensionOptionChecker), ante.NewValidateBasicDecorator(), ante.NewTxTimeoutHeightDecorator(),