Skip to content

Commit

Permalink
fix: lint & build
Browse files Browse the repository at this point in the history
  • Loading branch information
Raid Ateir committed Dec 13, 2024
1 parent 431d076 commit 41d4f06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions l1-contracts/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ const zkSyncBaseNetworkEnv =
export default {
defaultNetwork: "env",
solidity: {
version: "0.8.24",
settings: {
optimizer: {
enabled: true,
Expand All @@ -41,11 +40,12 @@ export default {
},
evmVersion: "cancun",
},
eraVersion: "1.0.1",
},
zksolc: {
compilerSource: "binary",
version: "1.5.8",
settings: {
// compilerPath: getZksolcUrl(),
isSystem: true,
},
},
Expand Down
4 changes: 2 additions & 2 deletions l1-contracts/test/foundry/l1/integration/GatewayTests.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -245,12 +245,12 @@ contract GatewayTests is L1ContractDeployer, ZKChainDeployer, TokenDeployer, L2T

address bridgeHubStmForChain = bridgeHub.chainTypeManager(chainId);
bytes32 bridgeHubBaseAssetIdForChain = bridgeHub.baseTokenAssetId(chainId);
address bridgeHubChainAddressdForChain = bridgeHub.getZKChain(chainId);
address bridgeHubChainAddressForChain = bridgeHub.getZKChain(chainId);
address bhAddr = IZKChain(chain).getBridgehub();

assertEq(bridgeHubStmForChain, stmAddr);
assertEq(bridgeHubBaseAssetIdForChain, baseTokenAssetId);
assertEq(bridgeHubChainAddressdForChain, chain);
assertEq(bridgeHubChainAddressForChain, chain);
assertEq(bhAddr, address(bridgeHub));
}

Expand Down

0 comments on commit 41d4f06

Please sign in to comment.