Skip to content

Commit

Permalink
fix client spec
Browse files Browse the repository at this point in the history
  • Loading branch information
g11tech committed Apr 20, 2023
1 parent c900be3 commit e1bed5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/client/lib/blockchain/chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ export class Chain {
if (this.config.chainCommon.hardforkGteHardfork(nextBlockHf, Hardfork.Paris)) {
this.config.logger.info('*'.repeat(85))
this.config.logger.info(
`Merge hardfork reached 🐼 👉 👈 🐼 ! block=${headers.height} td=${headers.td}`
`Paris (Merge) hardfork reached 🐼 👉 👈 🐼 ! block=${headers.height} td=${headers.td}`
)
this.config.logger.info('-'.repeat(85))
this.config.logger.info(' ')
Expand Down
4 changes: 2 additions & 2 deletions packages/client/test/integration/merge.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ tape('[Integration:Merge]', async (t) => {
{ name: 'chainstart', block: 0 },
{ name: 'london', block: 0 },
{
name: 'merge',
name: 'paris',
block: null,
forkHash: null,
ttd: BigInt(5),
Expand All @@ -56,7 +56,7 @@ tape('[Integration:Merge]', async (t) => {
{ name: 'chainstart', block: 0 },
{ name: 'london', block: 0 },
{
name: 'merge',
name: 'paris',
block: null,
forkHash: null,
ttd: BigInt(1000),
Expand Down

0 comments on commit e1bed5e

Please sign in to comment.