Skip to content

Commit

Permalink
e2e: disable evm networks (#774)
Browse files Browse the repository at this point in the history
  • Loading branch information
aalu1418 authored Jul 3, 2024
1 parent fcde8fc commit 6362ffb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions integration-tests/testconfig/testconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ func (c *TestConfig) GetNodeConfigTOML() (string, error) {
baseConfig.P2P.V2.DeltaReconcile = fiveSecondDuration
baseConfig.P2P.V2.ListenAddresses = &[]string{"0.0.0.0:6690"}

// disable all EVM networks
for i := range baseConfig.EVM {
baseConfig.EVM[i].Enabled = ptr.Ptr(false)
}

return baseConfig.TOMLString()
}

Expand Down

0 comments on commit 6362ffb

Please sign in to comment.