diff --git a/packages/beacon-node/src/chain/blocks/types.ts b/packages/beacon-node/src/chain/blocks/types.ts index 26f6a31cca9..31a8c02ef95 100644 --- a/packages/beacon-node/src/chain/blocks/types.ts +++ b/packages/beacon-node/src/chain/blocks/types.ts @@ -252,19 +252,19 @@ export function getBlockInputDataColumns( } export enum AttestationImportOpt { - Skip = 0, - Force = 1, + Skip, + Force, } export enum BlobSidecarValidation { /** When recieved in gossip the blobs are individually verified before import */ - Individual = 0, + Individual, /** * Blobs when recieved in req/resp can be fully verified before import * but currently used in spec tests where blobs come without proofs and assumed * to be valid */ - Full = 1, + Full, } export type ImportBlockOpts = {