From 911b4b43a641ef69cc102a6e9df71b847936b23a Mon Sep 17 00:00:00 2001 From: Navie Chan Date: Tue, 18 Jun 2024 18:25:34 +0300 Subject: [PATCH] Change ordering of attestation fields --- types/electra/attestation.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/types/electra/attestation.yaml b/types/electra/attestation.yaml index 6c0fc804..52202842 100644 --- a/types/electra/attestation.yaml +++ b/types/electra/attestation.yaml @@ -2,16 +2,16 @@ Electra: Attestation: type: object description: "The [`Attestation`](https://github.com/ethereum/consensus-specs/blob/v1.5.0-alpha.2/specs/electra/beacon-chain.md#attestation) object from the CL spec." - required: [aggregation_bits, signature, data, committee_bits] + required: [aggregation_bits, data, signature, committee_bits] properties: aggregation_bits: $ref: "../primitive.yaml#/BitList" description: "Attester aggregation bits." + data: + $ref: "../attestation.yaml#/AttestationData" signature: $ref: "../primitive.yaml#/Signature" description: "BLS aggregate signature." - data: - $ref: "../attestation.yaml#/AttestationData" committee_bits: $ref: "../primitive.yaml#/Bitvector" description: "Committee bits."