From b45fb5d55e055a0e94d80a53353fd4c45e2d5796 Mon Sep 17 00:00:00 2001 From: Joe Huang Date: Fri, 9 Aug 2024 14:15:38 -0500 Subject: [PATCH] fix test attempt --- core/internal/features/features_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/internal/features/features_test.go b/core/internal/features/features_test.go index 046f21b7f7d..8c5cad29d9a 100644 --- a/core/internal/features/features_test.go +++ b/core/internal/features/features_test.go @@ -473,6 +473,8 @@ func setupAppForEthTx(t *testing.T, operatorContracts OperatorContracts) (app *c cfg := configtest.NewGeneralConfigSimulated(t, func(c *chainlink.Config, s *chainlink.Secrets) { c.Database.Listener.FallbackPollInterval = commonconfig.MustNewDuration(100 * time.Millisecond) + depth := uint32(0) + c.EVM[0].FinalityDepth = &depth }) app = cltest.NewApplicationWithConfigV2AndKeyOnSimulatedBlockchain(t, cfg, b, lggr) b.Commit()