Skip to content

Commit

Permalink
Merge pull request #391 from 0xPolygonHermez/feature/naming-fix
Browse files Browse the repository at this point in the history
Update create genesis contract naming
  • Loading branch information
krlosMata authored Jan 29, 2025
2 parents e8f10d5 + b0846c1 commit 9521339
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployment/v2/1_createGenesis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ async function main() {
// Bridge implementation
const bridgeImplementationInfo = await getAddressInfo(bridgeImplementationAddress as string);
genesis.push({
contractName: `${bridgeContractName}`,
contractName: `${bridgeContractName} implementation`,
balance: "0",
nonce: bridgeImplementationInfo.nonce.toString(),
address: finalBridgeImplAddress,
Expand Down Expand Up @@ -327,7 +327,7 @@ async function main() {
}

genesis.push({
contractName: `${globalExitRootContractName}`,
contractName: `${globalExitRootContractName} implementation`,
balance: "0",
nonce: implGlobalExitRootL2Info.nonce.toString(),
address: finalGlobalExitRootL2ImplAddress,
Expand Down

0 comments on commit 9521339

Please sign in to comment.