Skip to content

Commit 0ca8590

Browse files
committed
Fixes ethereum genesis generator image source
1 parent 0fe1e95 commit 0ca8590

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/docker/test_env/genesis_generator.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import (
1919
"github.com/smartcontractkit/chainlink-testing-framework/lib/docker"
2020
"github.com/smartcontractkit/chainlink-testing-framework/lib/docker/ethereum"
2121
"github.com/smartcontractkit/chainlink-testing-framework/lib/logging"
22-
"github.com/smartcontractkit/chainlink-testing-framework/lib/mirror"
2322
)
2423

2524
var generatorForkToImageMap = map[ethereum.Fork]string{
@@ -73,7 +72,8 @@ func NewEthGenesisGenerator(chainConfig config.EthereumChainConfig, generatedDat
7372
opt(&g.EnvComponent)
7473
}
7574
// if the internal docker repo is set then add it to the version
76-
g.EnvComponent.ContainerImage = mirror.AddMirrorToImageIfSet(g.EnvComponent.ContainerImage)
75+
// genesis generator uses public ECRs only
76+
// g.EnvComponent.ContainerImage = mirror.AddMirrorToImageIfSet(g.EnvComponent.ContainerImage)
7777
return g, nil
7878
}
7979

0 commit comments

Comments
 (0)