From 68ce4c2be747e7745d1071ce07a74b76760fa928 Mon Sep 17 00:00:00 2001 From: beer-1 Date: Mon, 2 Dec 2024 18:33:06 +0900 Subject: [PATCH] fix default value --- x/evm/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/evm/config/config.go b/x/evm/config/config.go index ac49009..1cde2a3 100644 --- a/x/evm/config/config.go +++ b/x/evm/config/config.go @@ -36,7 +36,7 @@ type EVMConfig struct { func DefaultEVMConfig() EVMConfig { return EVMConfig{ ContractSimulationGasLimit: DefaultContractSimulationGasLimit, - DisableIndexer: true, + DisableIndexer: DefaultDisableIndexer, IndexerCacheSize: DefaultIndexerCacheSize, } }