File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
testing/execution_engine_integration/src Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ use unused_port::unused_tcp4_port;
11
11
/// We've pinned the Nethermind version since our method of using the `master` branch to
12
12
/// find the latest tag isn't working. It appears Nethermind don't always tag on `master`.
13
13
/// 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" ;
15
15
const NETHERMIND_REPO_URL : & str = "https://github.com/NethermindEth/nethermind" ;
16
16
17
17
fn build_result ( repo_dir : & Path ) -> Output {
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ impl<E: GenericExecutionEngine> TestRig<E> {
180
180
// Run the routine to check for online nodes.
181
181
pair. execution_layer . watchdog_task ( ) . await ;
182
182
183
- if pair. execution_layer . is_synced ( ) . await {
183
+ if ! pair. execution_layer . is_offline_or_erroring ( ) . await {
184
184
break ;
185
185
} else if start_instant + EXECUTION_ENGINE_START_TIMEOUT > Instant :: now ( ) {
186
186
sleep ( Duration :: from_millis ( 500 ) ) . await ;
You can’t perform that action at this time.
0 commit comments