pub async fn consistency_advanced<'a, I: IntoIterator<Item = (&'a SweetCell, bool)>>(
    all_cells: I,
    num_attempts: usize,
    delay: Duration
)
Expand description

Wait for all cells to reach consistency, with the option to specify that some cells are offline.

Cells paired with a false value will have their authored ops counted towards the total, but not their integrated ops (since they are not online to integrate things). This is useful for tests where nodes go offline.