diff --git a/integration-tests/go.mod b/integration-tests/go.mod index e317ca9b9dc..43a6fb1bf07 100644 --- a/integration-tests/go.mod +++ b/integration-tests/go.mod @@ -25,7 +25,7 @@ require ( github.com/slack-go/slack v0.12.2 github.com/smartcontractkit/chainlink-automation v1.0.1 github.com/smartcontractkit/chainlink-common v0.1.7-0.20231206181640-faad3f11cfad - github.com/smartcontractkit/chainlink-testing-framework v1.22.1-0.20231212204903-b443b6b68762 + github.com/smartcontractkit/chainlink-testing-framework v1.22.1-0.20231212230406-c42ee3fb0138 github.com/smartcontractkit/chainlink-vrf v0.0.0-20231120191722-fef03814f868 github.com/smartcontractkit/chainlink/v2 v2.0.0-00010101000000-000000000000 github.com/smartcontractkit/libocr v0.0.0-20231130143053-c5102a9c0fb7 diff --git a/integration-tests/go.sum b/integration-tests/go.sum index 35edb6a7b63..3bdc691f142 100644 --- a/integration-tests/go.sum +++ b/integration-tests/go.sum @@ -1367,6 +1367,8 @@ github.com/smartcontractkit/chainlink-starknet/relayer v0.0.1-beta-test.0.202312 github.com/smartcontractkit/chainlink-starknet/relayer v0.0.1-beta-test.0.20231205180940-ea2e3e916725/go.mod h1:vHrPBipRL52NdPp77KXNU2k1IoCUa1B33N9otZQPYko= github.com/smartcontractkit/chainlink-testing-framework v1.22.1-0.20231212204903-b443b6b68762 h1:7BtBjP4b2/nXX9eCpDg+CPdnkC5Tfm/EDy42PHfA8O4= github.com/smartcontractkit/chainlink-testing-framework v1.22.1-0.20231212204903-b443b6b68762/go.mod h1:yu6qqrppNJfutQV37fiSs4eS0uQP5QT0ebi3tlIgWN0= +github.com/smartcontractkit/chainlink-testing-framework v1.22.1-0.20231212230406-c42ee3fb0138 h1:3KDDSufYPzNZcB9cqV0J4zVYkkoDbEjwWxN6RQpgmo8= +github.com/smartcontractkit/chainlink-testing-framework v1.22.1-0.20231212230406-c42ee3fb0138/go.mod h1:yu6qqrppNJfutQV37fiSs4eS0uQP5QT0ebi3tlIgWN0= github.com/smartcontractkit/chainlink-vrf v0.0.0-20231120191722-fef03814f868 h1:FFdvEzlYwcuVHkdZ8YnZR/XomeMGbz5E2F2HZI3I3w8= github.com/smartcontractkit/chainlink-vrf v0.0.0-20231120191722-fef03814f868/go.mod h1:Kn1Hape05UzFZ7bOUnm3GVsHzP0TNrVmpfXYNHdqGGs= github.com/smartcontractkit/go-plugin v0.0.0-20231003134350-e49dad63b306 h1:ko88+ZznniNJZbZPWAvHQU8SwKAdHngdDZ+pvVgB5ss= diff --git a/integration-tests/soak/ocr_test.go b/integration-tests/soak/ocr_test.go index 2e187f2984a..4d7971d678e 100644 --- a/integration-tests/soak/ocr_test.go +++ b/integration-tests/soak/ocr_test.go @@ -14,35 +14,7 @@ import ( func TestOCRSoak(t *testing.T) { l := logging.GetTestLogger(t) // Use this variable to pass in any custom EVM specific TOML values to your Chainlink nodes - customNetworkTOML := ` - ChainID = '1029' - FinalityDepth = 500 - # blocks are generated every 2-4s - LogPollInterval = '2s' - # Blocks are only emitted when a transaction happens / no empty blocks - NoNewHeadsThreshold = '0' - - [GasEstimator] - EIP1559DynamicFees = false - - [GasEstimator.BlockHistory] - # how many blocks we want to keep in memory to calculate gas price - # # Average block time of 2s - BlockHistorySize = 24 - - [Transactions] - ResendAfterThreshold = '30s' - - [HeadTracker] - # re-org for bttc is really high so we want to check for the block where reorg happens - HistoryDepth = 500 - - [NodePool] - SyncThreshold = 10 - - [OCR] - ContractConfirmations = 1 - ` + customNetworkTOML := `` // Uncomment below for debugging TOML issues on the node // network := networks.MustGetSelectedNetworksFromEnv()[0] // fmt.Println("Using Chainlink TOML\n---------------------")