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()