Skip to content

Commit 7260821

Browse files
Reduce the sleep to 3 minutes before re-evaluating
1 parent eb9d481 commit 7260821

File tree

1 file changed

+2
-2
lines changed
  • aggregation_mode/src/backend

1 file changed

+2
-2
lines changed

aggregation_mode/src/backend/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,8 @@ impl ProofAggregator {
171171
info!("Skipping sending proof to ProofAggregationService contract due to budget/time constraints.");
172172
}
173173

174-
// Sleep for 5 minutes before re-evaluating
175-
sleep(Duration::from_secs(300));
174+
// Sleep for 3 minutes (15 blocks) before re-evaluating
175+
sleep(Duration::from_secs(180));
176176
}
177177

178178
Ok(())

0 commit comments

Comments
 (0)