Skip to content

Commit

Permalink
Address @nflaig's comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ClockworkYuzu authored Dec 6, 2024
1 parent cb49d96 commit 961c319
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const GIRAFFE_BANNER = String.raw`
export const ELECTRA_GIRAFFE_BANNER = String.raw`
2048
:--:
:-@==+-:
Expand Down
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,7 +15,7 @@ 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 {ELECTRA_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";
Expand Down Expand Up @@ -159,7 +159,7 @@ export async function verifyBlocksInEpoch(
break;

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

Expand Down

0 comments on commit 961c319

Please sign in to comment.