We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7613bf1 commit fa955feCopy full SHA for fa955fe
src/tasks/block/sim.rs
@@ -216,14 +216,12 @@ impl Simulator {
216
// we also subtract 3 seconds to account for the sequencer stopping signing.
217
let remaining = (self.slot_calculator().slot_duration() - timepoint).saturating_sub(3);
218
219
- // We add a 2500 ms buffer to account for sequencer stopping signing.
220
let deadline = Instant::now() + Duration::from_secs(remaining);
221
222
debug!(
223
timepoint,
224
remaining,
225
- timestamp = chrono::Utc::now().timestamp(),
226
- deadline = ?deadline,
+ timestamp = crate::utils::now(),
227
"calculated deadline for block simulation"
228
);
229
0 commit comments