Skip to content

Commit

Permalink
fix: remove extraneous lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewkeil committed Dec 3, 2024
1 parent ea4be01 commit e0e694f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/beacon-node/src/chain/blocks/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit e0e694f

Please sign in to comment.