Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update client/service/test/src/lib.rs
Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
  • Loading branch information
gilescope and bkchr authored Oct 22, 2021
commit 25440c2406795acd977f4959c5aa0de109332cb3
4 changes: 2 additions & 2 deletions client/service/test/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ where
loop {
interval.tick().await;

full_ready = full_nodes
if full_nodes
.iter()
.all(|&(ref id, ref service, _, _)| full_predicate(*id, service));
.all(|&(ref id, ref service, _, _)| full_predicate(*id, service)) { break }
}
};

Expand Down