From e0e694ffb1cd63839749850a12508b2504b7bcfa Mon Sep 17 00:00:00 2001 From: matthewkeil Date: Tue, 3 Dec 2024 18:33:14 +0700 Subject: [PATCH] fix: remove extraneous lint fix --- packages/beacon-node/src/chain/blocks/types.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 = {