pub async fn consistency_others(
    all_cells: &[&SweetCell],
    num_attempts: usize,
    delay: Duration
)
Expand description

Wait for all cells to reach consistency

Examples found in repository?
src/test_utils.rs (line 583)
580
581
582
583
584
pub async fn consistency_10s_others(all_cells: &[&SweetCell]) {
    const NUM_ATTEMPTS: usize = 100;
    const DELAY_PER_ATTEMPT: std::time::Duration = std::time::Duration::from_millis(100);
    consistency_others(all_cells, NUM_ATTEMPTS, DELAY_PER_ATTEMPT).await
}