Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lean_spec/subspecs/forkchoice/store.py
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ def tick_interval(self, has_proposal: bool) -> "Store":
"""
# Advance time by one interval
store = self.model_copy(update={"time": self.time + Uint64(1)})
current_interval = store.time % SECONDS_PER_SLOT % INTERVALS_PER_SLOT
current_interval = store.time % INTERVALS_PER_SLOT

if current_interval == Uint64(0):
# Start of slot - process attestations if proposal exists
Expand Down
Loading