From 1be3db8fe1d8959052d122a200f992a437cd3c85 Mon Sep 17 00:00:00 2001 From: anirudhwarrier <12178754+anirudhwarrier@users.noreply.github.com> Date: Wed, 27 Mar 2024 00:15:32 +0400 Subject: [PATCH] fix config --- integration-tests/testconfig/automation/automation.toml | 4 ++++ integration-tests/testconfig/automation/config.go | 2 ++ 2 files changed, 6 insertions(+) diff --git a/integration-tests/testconfig/automation/automation.toml b/integration-tests/testconfig/automation/automation.toml index 2bbf89af4a3..c1fec4f1f8a 100644 --- a/integration-tests/testconfig/automation/automation.toml +++ b/integration-tests/testconfig/automation/automation.toml @@ -37,6 +37,8 @@ check_burn_amount = 0 perform_burn_amount = 0 upkeep_gas_limit = 1000000 shared_trigger = false +is_streams_lookup = false +feeds = ["0x000200"] [[Load.Automation.Load]] number_of_upkeeps=5 @@ -47,6 +49,8 @@ check_burn_amount = 0 perform_burn_amount = 0 upkeep_gas_limit = 1000000 shared_trigger = true +is_streams_lookup = false +feeds = ["0x000200"] [Load.Pyroscope] enabled=false \ No newline at end of file diff --git a/integration-tests/testconfig/automation/config.go b/integration-tests/testconfig/automation/config.go index a1f8d47d948..0e951da28c3 100644 --- a/integration-tests/testconfig/automation/config.go +++ b/integration-tests/testconfig/automation/config.go @@ -98,6 +98,8 @@ func (c *Load) Validate() error { if c.Feeds == nil { c.Feeds = []string{} } + } else { + *c.IsStreamsLookup = false } return nil