Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless committed Aug 14, 2024
1 parent 9f6d439 commit 576a59c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions l1-contracts/src.ts/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,7 @@ export class Deployer {
if (this.verbose) {
console.log(`StateTransition System registered, gas used: ${receipt1.gasUsed.toString()}`);
}

const stmDeploymentTracker = this.stmDeploymentTracker(this.deployWallet);

const l1AssetRouter = this.defaultSharedBridge(this.deployWallet);
Expand All @@ -1063,7 +1063,10 @@ export class Deployer {
]);
const receipt3 = await this.executeUpgrade(this.addresses.Bridgehub.STMDeploymentTrackerProxy, 0, data1);
if (this.verbose) {
console.log("STM asset registered in L1 Shared Bridge via STM Deployment Tracker", receipt3.gasUsed.toString());
console.log(
"STM asset registered in L1 Shared Bridge via STM Deployment Tracker",
receipt3.gasUsed.toString()
);
console.log(
`CONTRACTS_STM_ASSET_INFO=${await bridgehub.stmAssetId(this.addresses.StateTransition.StateTransitionProxy)}`
);
Expand Down

0 comments on commit 576a59c

Please sign in to comment.