Skip to content
Merged
Show file tree
Hide file tree
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: 2 additions & 0 deletions src/lean_spec/subspecs/containers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

from .attestation import (
AggregatedAttestation,
AggregationBits,
Attestation,
AttestationData,
SignedAggregatedAttestation,
Expand All @@ -30,6 +31,7 @@

__all__ = [
"AggregatedAttestation",
"AggregationBits",
"Attestation",
"AttestationData",
"Block",
Expand Down
3 changes: 1 addition & 2 deletions src/lean_spec/subspecs/containers/attestation/attestation.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
- What is already justified (source)
- What should be justified next (target)

Attestations can be aggregated to save space, but the current specification
doesn't do this yet.
Attestations can be aggregated by common data to save space and bandwidth.
"""

from __future__ import annotations
Expand Down
Loading