Skip to content
Merged
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/xmss/subtree.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def from_prf_key(
# Generate leaf hashes for all epochs in this bottom tree.
leaf_hashes: list[HashDigestVector] = []

for epoch in range(int(start_epoch), int(end_epoch)):
for epoch in range(start_epoch, end_epoch):
# For each epoch, compute the one-time public key (chain endpoints).
chain_ends: list[HashDigestVector] = []

Expand Down
Loading