Skip to content

Commit

Permalink
pre-allocating
Browse files Browse the repository at this point in the history
  • Loading branch information
b-gopalswami committed Dec 20, 2024
1 parent c39301a commit fe9aba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-tests/testsetups/ccip/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func createAnvilDockerNetwork(t *testing.T) (
WSRPC: jdOutput.DockerWSRPCUrl,
Creds: insecure.NewCredentials(),
}
var chains []devenv.ChainConfig
chains := make([]devenv.ChainConfig, 0, len(blockchains))
for _, chain := range blockchains {
chainID, err := strconv.ParseInt(chain.ChainID, 10, 64)
require.NoError(t, err, "invalid chain id")
Expand Down

0 comments on commit fe9aba2

Please sign in to comment.