Skip to content

Commit

Permalink
more fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stackman27 committed Nov 27, 2023
1 parent 5fcd7ca commit 97f43b8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
1 change: 0 additions & 1 deletion core/chains/evm/config/toml/defaults/Kava_Testnet.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
ChainID = '2221'
ChainType = 'kava'
FinalityDepth = 1
LogPollInterval = '6s'
NoNewHeadsThreshold = '40s'
Expand Down
11 changes: 7 additions & 4 deletions integration-tests/soak/ocr_test.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
package soak

import (
"fmt"
"testing"

"github.com/stretchr/testify/require"

"github.com/smartcontractkit/chainlink-testing-framework/logging"
"github.com/smartcontractkit/chainlink-testing-framework/networks"

"github.com/smartcontractkit/chainlink/integration-tests/actions"
"github.com/smartcontractkit/chainlink/integration-tests/config"
"github.com/smartcontractkit/chainlink/integration-tests/testsetups"
)

Expand All @@ -16,10 +19,10 @@ func TestOCRSoak(t *testing.T) {
// Use this variable to pass in any custom EVM specific TOML values to your Chainlink nodes
customNetworkTOML := ``
// Uncomment below for debugging TOML issues on the node
// network := networks.MustGetSelectedNetworksFromEnv()[0]
// fmt.Println("Using Chainlink TOML\n---------------------")
// fmt.Println(networks.AddNetworkDetailedConfig(config.BaseOCR1Config, customNetworkTOML, network))
// fmt.Println("---------------------")
network := networks.MustGetSelectedNetworksFromEnv()[0]
fmt.Println("Using Chainlink TOML\n---------------------")
fmt.Println(networks.AddNetworkDetailedConfig(config.BaseOCR1Config, customNetworkTOML, network))
fmt.Println("---------------------")

ocrSoakTest, err := testsetups.NewOCRSoakTest(t, false)
require.NoError(t, err, "Error creating soak test")
Expand Down

0 comments on commit 97f43b8

Please sign in to comment.