@@ -349,7 +349,6 @@ struct HailstormState<'a, H: TestHarness> {
349349 parent_commitment : & ' a mut H :: Commitment ,
350350 participants : & ' a [ K ] ,
351351 schemes : & ' a [ S ] ,
352- propagation_delay : Duration ,
353352}
354353
355354fn active_validator_indices < H : TestHarness > (
@@ -565,8 +564,6 @@ async fn drive_hailstorm_height_up_to_verify<H: TestHarness>(
565564 H :: verify ( & mut verifier. handle , round, & block, & mut [ ] ) . await ;
566565 }
567566
568- context. sleep ( state. propagation_delay ) . await ;
569-
570567 PendingHailstormHeight {
571568 height,
572569 expected_digest,
@@ -661,7 +658,6 @@ pub fn hailstorm<H: TestHarness>(
661658 let mut oracle =
662659 setup_network_with_participants ( context. clone ( ) , NZUsize ! ( 3 ) , participants. clone ( ) )
663660 . await ;
664- let propagation_delay = link. latency ;
665661 setup_network_links ( & mut oracle, & participants, link. clone ( ) ) . await ;
666662
667663 let mut validators = Vec :: new ( ) ;
@@ -719,7 +715,6 @@ pub fn hailstorm<H: TestHarness>(
719715 parent_commitment : & mut parent_commitment,
720716 participants : & participants,
721717 schemes : & schemes,
722- propagation_delay,
723718 } ;
724719 advance_hailstorm_to ( persisted_height, & mut context, & mut state) . await ;
725720 }
@@ -737,7 +732,6 @@ pub fn hailstorm<H: TestHarness>(
737732 parent_commitment : & mut parent_commitment,
738733 participants : & participants,
739734 schemes : & schemes,
740- propagation_delay,
741735 } ;
742736 Some (
743737 drive_hailstorm_height_up_to_verify (
@@ -767,7 +761,6 @@ pub fn hailstorm<H: TestHarness>(
767761 parent_commitment : & mut parent_commitment,
768762 participants : & participants,
769763 schemes : & schemes,
770- propagation_delay,
771764 } ;
772765 finalize_hailstorm_height ( pending, & mut context, & mut state) . await ;
773766 }
@@ -792,7 +785,6 @@ pub fn hailstorm<H: TestHarness>(
792785 parent_commitment : & mut parent_commitment,
793786 participants : & participants,
794787 schemes : & schemes,
795- propagation_delay,
796788 } ;
797789 advance_hailstorm_to ( target_height, & mut context, & mut state) . await ;
798790
0 commit comments