Skip to content

Commit 3ab3ba2

Browse files
committed
update waiting status
1 parent b0f9f13 commit 3ab3ba2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

testing/execution_engine_integration/src/nethermind.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use unused_port::unused_tcp4_port;
1111
/// We've pinned the Nethermind version since our method of using the `master` branch to
1212
/// find the latest tag isn't working. It appears Nethermind don't always tag on `master`.
1313
/// We should fix this so we always pull the latest version of Nethermind.
14-
const NETHERMIND_BRANCH: &str = "release/1.21.0";
14+
const NETHERMIND_BRANCH: &str = "release/1.26.0";
1515
const NETHERMIND_REPO_URL: &str = "https://github.com/NethermindEth/nethermind";
1616

1717
fn build_result(repo_dir: &Path) -> Output {

testing/execution_engine_integration/src/test_rig.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ impl<E: GenericExecutionEngine> TestRig<E> {
180180
// Run the routine to check for online nodes.
181181
pair.execution_layer.watchdog_task().await;
182182

183-
if pair.execution_layer.is_synced().await {
183+
if !pair.execution_layer.is_offline_or_erroring().await {
184184
break;
185185
} else if start_instant + EXECUTION_ENGINE_START_TIMEOUT > Instant::now() {
186186
sleep(Duration::from_millis(500)).await;

0 commit comments

Comments
 (0)