Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add terminal-sized Electra giraffe banner #7286

Merged
merged 6 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Address @nflaig's comment
  • Loading branch information
ClockworkYuzu authored Dec 6, 2024
commit 961c319cb2d3c519b205789481a82518ed004f4e
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
Loading