Skip to content

Commit 081a33f

Browse files
committed
fix(testing): restore full pool name in attestation-not-found message
Collapsing the message dropped the "_aggregated_payloads" suffix for the new and known pools. Name each pool by its actual store field so the not-found message reads accurately for all three locations.
1 parent 3af7632 commit 081a33f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/testing/src/consensus_testing/test_types/store_checks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,10 +326,10 @@ def _resolve(label: str) -> Bytes32:
326326
# The aggregated pools group proofs covering many validators under each vote.
327327
if attestation_check.location == "new":
328328
payloads = store.latest_new_aggregated_payloads
329-
label = "in latest_new"
329+
label = "in latest_new_aggregated_payloads"
330330
else:
331331
payloads = store.latest_known_aggregated_payloads
332-
label = "in latest_known"
332+
label = "in latest_known_aggregated_payloads"
333333
for attestation_data, proofs in payloads.items():
334334
for proof in proofs:
335335
for participant_index in proof.participants.to_validator_indices():

0 commit comments

Comments
 (0)