From 8a1d97e53eb9c8c7e20e22abcf34870bfb7b949b Mon Sep 17 00:00:00 2001 From: huangyi Date: Thu, 12 Sep 2024 15:56:19 +0800 Subject: [PATCH] enable pre-estimate by default in testground --- testground/benchmark/benchmark/peer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testground/benchmark/benchmark/peer.py b/testground/benchmark/benchmark/peer.py index 3d399cf359..b9d8ce6f7e 100644 --- a/testground/benchmark/benchmark/peer.py +++ b/testground/benchmark/benchmark/peer.py @@ -134,6 +134,7 @@ def patch_configs(home: Path, group: str, peers: str, block_executor: str): "memiavl.enable": True, "mempool.max-txs": MEMPOOL_SIZE, "evm.block-executor": block_executor, + "evm.block-stm-pre-estimate": True, "json-rpc.enable-indexer": True, } if block_executor == "block-stm":