Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kalverra committed Mar 26, 2024
1 parent 381b2d2 commit b5894d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion integration-tests/docker/test_env/test_env_builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,8 @@ func (b *CLTestEnvBuilder) Build() (*CLClusterTestEnv, error) {
Str("Network", networkConfig.Name).
Int64("Chain ID", networkConfig.ChainID).
Msg("Private network config provided, but we are running on a live network. Ignoring private network config.")
b.te.rpcProviders[networkConfig.ChainID] = test_env.NewRPCProvider(networkConfig.HTTPURLs, networkConfig.URLs, networkConfig.HTTPURLs, networkConfig.URLs)
rpcProvider := test_env.NewRPCProvider(networkConfig.HTTPURLs, networkConfig.URLs, networkConfig.HTTPURLs, networkConfig.URLs)
b.te.rpcProviders[networkConfig.ChainID] = &rpcProvider
b.te.isSimulatedNetwork = false
}

Expand Down

0 comments on commit b5894d4

Please sign in to comment.