From 85a999cfd2fba275709b617cb8445d7a9850a80d Mon Sep 17 00:00:00 2001 From: connorwstein Date: Wed, 21 Aug 2024 13:46:33 -0400 Subject: [PATCH] Speed up --- integration-tests/deployment/memory/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/deployment/memory/node.go b/integration-tests/deployment/memory/node.go index 7050cad53d..5ec30cad49 100644 --- a/integration-tests/deployment/memory/node.go +++ b/integration-tests/deployment/memory/node.go @@ -252,7 +252,7 @@ func createConfigV2Chain(chainID uint64) *v2toml.EVMConfig { chainIDBig := evmutils.NewI(int64(chainID)) chain := v2toml.Defaults(chainIDBig) chain.GasEstimator.LimitDefault = ptr(uint64(5e6)) - chain.LogPollInterval = config.MustNewDuration(1000 * time.Millisecond) + chain.LogPollInterval = config.MustNewDuration(100 * time.Millisecond) chain.Transactions.ForwardersEnabled = ptr(false) chain.FinalityDepth = ptr(uint32(2)) return &v2toml.EVMConfig{