Skip to content

Commit ee32ad7

Browse files
committed
docs: fix comments
1 parent 4a6ef07 commit ee32ad7

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

crates/blockchain/src/store.rs

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1169,11 +1169,6 @@ fn union_aggregation_bits(a: &AggregationBits, b: &AggregationBits) -> Aggregati
11691169
/// - Single entry: kept as-is.
11701170
/// - Multiple entries: merged into one using recursive proof aggregation
11711171
/// (leanSpec PR #510).
1172-
///
1173-
/// The input pairs each attestation with its signature proof so the two
1174-
/// Vecs can never drift out of sync (the prior signature used separate
1175-
/// `Vec<AggregatedAttestation>` and `Vec<AggregatedSignatureProof>` guarded
1176-
/// by a debug-only length assertion).
11771172
fn compact_attestations(
11781173
entries: Vec<(AggregatedAttestation, AggregatedSignatureProof)>,
11791174
head_state: &State,
@@ -1275,8 +1270,7 @@ fn compact_attestations(
12751270
/// the underlying aggregation scheme.
12761271
///
12771272
/// Each selected proof is appended to `selected` paired with its
1278-
/// corresponding AggregatedAttestation so the two lists can never drift
1279-
/// out of sync.
1273+
/// corresponding AggregatedAttestation.
12801274
fn extend_proofs_greedily(
12811275
proofs: &[AggregatedSignatureProof],
12821276
selected: &mut Vec<(AggregatedAttestation, AggregatedSignatureProof)>,

0 commit comments

Comments
 (0)