Skip to content

Commit

Permalink
chore: dynamic year on the chainsafe cli notice
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig committed May 10, 2023
1 parent ae3fda6 commit d550804
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/cli.ts
Expand Up @@ -9,7 +9,7 @@ import {getVersionData} from "./util/version.js";
const {version} = getVersionData();
const topBanner = `🌟 Lodestar: TypeScript Implementation of the Ethereum Consensus Beacon Chain.
* Version: ${version}
* by ChainSafe Systems, 2018-2023`;
* by ChainSafe Systems, 2018-${new Date().getFullYear()}`;
const bottomBanner = `πŸ“– For more information, check the CLI reference:
* https://chainsafe.github.io/lodestar/reference/cli
Expand Down
2 changes: 1 addition & 1 deletion packages/flare/src/cli.ts
Expand Up @@ -10,7 +10,7 @@ Flare is a sudden brief burst of bright flame or light.
In the wrong hands, can lead people astray.
Use with care.
* by ChainSafe Systems, 2018-2023`;
* by ChainSafe Systems, 2018-${new Date().getFullYear()}`;
const bottomBanner = `
✍️ Give feedback and report issues on GitHub:
* https://github.com/ChainSafe/lodestar`;
Expand Down
2 changes: 1 addition & 1 deletion packages/prover/src/cli/cli.ts
Expand Up @@ -9,7 +9,7 @@ import {globalOptions} from "./options.js";
const {version} = getVersionData();
const topBanner = `🌟 Lodestar Prover Proxy: Ethereum RPC proxy for RPC responses, verified against the trusted block hashes.
* Version: ${version}
* by ChainSafe Systems, 2018-2023`;
* by ChainSafe Systems, 2018-${new Date().getFullYear()}`;
const bottomBanner = `πŸ“– For more information, check the CLI reference:
* https://chainsafe.github.io/lodestar/reference/cli
Expand Down

0 comments on commit d550804

Please sign in to comment.