From d4f91fbbae5181b6b9ab4219e06dcb6d5a701399 Mon Sep 17 00:00:00 2001 From: Nazar Hussain Date: Mon, 6 May 2024 17:54:29 +0200 Subject: [PATCH] Fix the build erros --- packages/types/src/electra/sszTypes.ts | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/packages/types/src/electra/sszTypes.ts b/packages/types/src/electra/sszTypes.ts index cf3ae690de14..26539dd61365 100644 --- a/packages/types/src/electra/sszTypes.ts +++ b/packages/types/src/electra/sszTypes.ts @@ -423,20 +423,3 @@ export const SSEPayloadAttributes = new ContainerType( }, {typeName: "SSEPayloadAttributes", jsonCase: "eth2"} ); - -export const AggregateAndProof = new ContainerType( - { - aggregatorIndex: ValidatorIndex, - aggregate: Attestation, - selectionProof: BLSSignature, - }, - {typeName: "AggregateAndProof", jsonCase: "eth2", cachePermanentRootStruct: true} -); - -export const SignedAggregateAndProof = new ContainerType( - { - message: AggregateAndProof, - signature: BLSSignature, - }, - {typeName: "SignedAggregateAndProof", jsonCase: "eth2"} -);