We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d623ed0 commit 3630400Copy full SHA for 3630400
1 file changed
aggregation_mode/proof_aggregator/src/backend/mod.rs
@@ -175,13 +175,13 @@ impl ProofAggregator {
175
hex::encode(blob_versioned_hash)
176
);
177
178
- // Iterate until we can send the proof on-chain
+ // We start on 24 hours because the proof aggregator runs once a day, so the time elapsed
179
+ // should be considered over a 24h period.
180
let mut time_elapsed = Duration::from_secs(24 * 3600);
181
182
+ // Iterate until we can send the proof on-chain
183
loop {
- // We add 24 hours because the proof aggregator runs once a day, so the time elapsed
- // should be considered over a 24h period.
184
-
+ // Fetch gas price from network
185
let gas_price = self
186
.rpc_provider
187
.get_gas_price()
0 commit comments