Skip to content

Commit

Permalink
update waiting status
Browse files Browse the repository at this point in the history
  • Loading branch information
realbigsean committed Apr 25, 2024
1 parent bd985cb commit f3bde57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testing/execution_engine_integration/src/nethermind.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use unused_port::unused_tcp4_port;
/// We've pinned the Nethermind version since our method of using the `master` branch to
/// find the latest tag isn't working. It appears Nethermind don't always tag on `master`.
/// We should fix this so we always pull the latest version of Nethermind.
const NETHERMIND_BRANCH: &str = "release/1.21.0";
const NETHERMIND_BRANCH: &str = "release/1.26.0";
const NETHERMIND_REPO_URL: &str = "https://github.com/NethermindEth/nethermind";

fn build_result(repo_dir: &Path) -> Output {
Expand Down
2 changes: 1 addition & 1 deletion testing/execution_engine_integration/src/test_rig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ impl<Engine: GenericExecutionEngine> TestRig<Engine> {
// Run the routine to check for online nodes.
pair.execution_layer.watchdog_task().await;

if pair.execution_layer.is_synced().await {
if !pair.execution_layer.is_offline_or_erroring().await {
break;
} else if start_instant + EXECUTION_ENGINE_START_TIMEOUT > Instant::now() {
sleep(Duration::from_millis(500)).await;
Expand Down

0 comments on commit f3bde57

Please sign in to comment.