Skip to content

Commit 2d19e31

Browse files
committed
feat: update submit signature grace period
1 parent 0de5ada commit 2d19e31

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

observer/validation/fdc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def check_submit_signatures(
177177

178178
if submit_signatures is not None:
179179
deadline = max(
180-
round.voting_epoch.next.start_s + 55,
180+
round.voting_epoch.next.start_s + 60,
181181
(finalization and finalization.timestamp) or 0,
182182
)
183183

observer/validation/ftso.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def check_submit_signatures(
185185

186186
if submit_signatures is not None:
187187
deadline = max(
188-
round.voting_epoch.next.start_s + 55,
188+
round.voting_epoch.next.start_s + 60,
189189
(finalization and finalization.timestamp) or 0,
190190
)
191191

observer/voting_round.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def finalize(self, block: BlockData) -> list[VotingRound]:
249249
self.rounds.pop(k, None)
250250
continue
251251

252-
# 55 is submit sigs deadline, 10 is relay grace, 10 is additional buffer
252+
# need to wait until end of epoch to collect all signatures
253253
round_completed = k.next.end_s < block["timestamp"]
254254

255255
if round_completed:

0 commit comments

Comments
 (0)