Skip to content

Commit

Permalink
zk fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kelemeno committed Jan 24, 2024
1 parent c5fbdd7 commit 4c50e2d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import {VerifierParams} from "./IVerifier.sol";
import "../libraries/Diamond.sol";

interface IZkSyncStateTransition is IAdmin, IExecutor, IGetters, IMailbox {

// KL todo: need this in the server for now
event ProposeTransparentUpgrade(
Diamond.DiamondCutData diamondCut,
Expand Down
2 changes: 0 additions & 2 deletions l1-contracts/scripts/register-hyperchain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ async function main() {
const nonce = cmd.nonce ? parseInt(cmd.nonce) : await deployWallet.getTransactionCount();
console.log(`Using nonce: ${nonce}`);

const create2Salt = cmd.create2Salt ? cmd.create2Salt : ethers.utils.hexlify(ethers.utils.randomBytes(32));

const deployer = new Deployer({
deployWallet,
ownerAddress,
Expand Down
2 changes: 1 addition & 1 deletion l1-contracts/src.ts/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export class Deployer {
return diamondCut(
facetCuts,
this.addresses.StateTransition.DiamondInit,
"0x" + diamondInitCalldata.slice(2 + (4+9*32) * 2)
"0x" + diamondInitCalldata.slice(2 + (4 + 9 * 32) * 2)
);
}

Expand Down

0 comments on commit 4c50e2d

Please sign in to comment.