Skip to content
Merged
Changes from 6 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
32 changes: 15 additions & 17 deletions packages/beacon-node/src/chain/validation/attestation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ import {
SingleAttestation,
Slot,
ValidatorIndex,
electra,
isElectraSingleAttestation,
phase0,
ssz,
Expand Down Expand Up @@ -514,27 +513,26 @@ async function validateAttestationNoSignatureCheck(
}

// no signature check, leave that for step1
const indexedAttestationContent = {
const indexedAttestation: IndexedAttestation = {
attestingIndices,
data: attData,
signature,
};
const indexedAttestation =
ForkSeq[fork] >= ForkSeq.electra
? (indexedAttestationContent as electra.IndexedAttestation)
: (indexedAttestationContent as phase0.IndexedAttestation);

const attestationContent = attestationOrCache.attestation ?? {
aggregationBits,
data: attData,
committeeIndex,
signature,
};

const attestation =
ForkSeq[fork] >= ForkSeq.electra
? (attestationContent as SingleAttestation<ForkPostElectra>)
: (attestationContent as SingleAttestation<ForkPreElectra>);
const attestation: SingleAttestation = attestationOrCache.attestation
? attestationOrCache.attestation
: !isForkPostElectra(fork)
? {
aggregationBits: aggregationBits as BitArray,
data: attData,
signature,
}
: {
committeeIndex,
attesterIndex: validatorIndex,
data: attData,
signature,
};

return {
attestation,
Expand Down