Skip to content

Commit 08bdc2d

Browse files
committed
Update init message
1 parent dd0c0a2 commit 08bdc2d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/docker/test_env/nethermind_eth1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ func (g *Nethermind) getEth1ContainerRequest() (*tc.ContainerRequest, error) {
120120
// ImagePlatform: "linux/x86_64", //don't even try this on Apple Silicon, the node won't start due to .NET error
121121
ExposedPorts: []string{NatPortFormat(DEFAULT_EVM_NODE_HTTP_PORT), NatPortFormat(DEFAULT_EVM_NODE_WS_PORT)},
122122
WaitingFor: tcwait.ForAll(
123-
tcwait.ForLog("Nethermind initialization completed").
123+
tcwait.ForLog("Initialization Completed").
124124
WithPollInterval(1 * time.Second),
125125
).WithStartupTimeoutDefault(g.StartupTimeout),
126126
Cmd: []string{

lib/docker/test_env/nethermind_eth2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ func (g *Nethermind) getEth2ContainerRequest() (*tc.ContainerRequest, error) {
103103
// ImagePlatform: "linux/x86_64", //don't even try this on Apple Silicon, the node won't start due to .NET error
104104
ExposedPorts: []string{NatPortFormat(DEFAULT_EVM_NODE_HTTP_PORT), NatPortFormat(DEFAULT_EVM_NODE_WS_PORT), NatPortFormat(ETH2_EXECUTION_PORT)},
105105
WaitingFor: tcwait.ForAll(
106-
tcwait.ForLog("Nethermind initialization completed").
106+
tcwait.ForLog("Initialization Completed").
107107
WithPollInterval(1 * time.Second),
108108
).WithStartupTimeoutDefault(g.StartupTimeout),
109109
Cmd: command,

0 commit comments

Comments
 (0)