Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ensi321 committed Dec 3, 2024
1 parent 9b0bec8 commit 581ee18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/beacon-node/src/chain/blocks/verifyBlock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ import {BlockProcessOpts} from "../options.js";
import {RegenCaller} from "../regen/index.js";
import {BlockInput, BlockInputType, ImportBlockOpts} from "./types.js";
import {DENEB_BLOWFISH_BANNER} from "./utils/blowfishBanner.js";
import {GIRAFFE_BANNER} from "./utils/giraffeBanner.js";
import {CAPELLA_OWL_BANNER} from "./utils/ownBanner.js";
import {POS_PANDA_MERGE_TRANSITION_BANNER} from "./utils/pandaMergeTransitionBanner.js";
import {verifyBlocksDataAvailability} from "./verifyBlocksDataAvailability.js";
import {SegmentExecStatus, verifyBlocksExecutionPayload} from "./verifyBlocksExecutionPayloads.js";
import {verifyBlocksSignatures} from "./verifyBlocksSignatures.js";
import {verifyBlocksStateTransitionOnly} from "./verifyBlocksStateTransitionOnly.js";
import {writeBlockInputToDb} from "./writeBlockInputToDb.js";
import { GIRAFFE_BANNER } from "./utils/giraffeBanner.js";

/**
* Verifies 1 or more blocks are fully valid; from a linear sequence of blocks.
Expand Down Expand Up @@ -157,7 +157,7 @@ export async function verifyBlocksInEpoch(
this.logger.info(DENEB_BLOWFISH_BANNER);
this.logger.info("Activating blobs", {epoch: this.config.DENEB_FORK_EPOCH});
break;

case ForkName.electra:
this.logger.info(GIRAFFE_BANNER);
this.logger.info("Activating maxEB", {epoch: this.config.ELECTRA_FORK_EPOCH});
Expand Down

0 comments on commit 581ee18

Please sign in to comment.