Commit d92b3a8e authored by Matthew Slipper's avatar Matthew Slipper Committed by GitHub

Merge pull request #8456 from ethereum-optimism/ctb/deny-warning

contracts-bedrock: fail on warnings
parents 460da7e3 182e3666
...@@ -161,6 +161,8 @@ jobs: ...@@ -161,6 +161,8 @@ jobs:
command: forge --version command: forge --version
- run: - run:
name: Build monorepo name: Build monorepo
environment:
FOUNDRY_PROFILE: ci
command: pnpm build command: pnpm build
- persist_to_workspace: - persist_to_workspace:
root: "." root: "."
......
...@@ -53,8 +53,9 @@ ignore = ['src/vendor/WETH9.sol'] ...@@ -53,8 +53,9 @@ ignore = ['src/vendor/WETH9.sol']
# PROFILE: CI # # PROFILE: CI #
################################################################ ################################################################
[profile.ci.fuzz] [profile.ci]
runs = 512 deny_warnings = true
fuzz = { runs = 512 }
################################################################ ################################################################
# PROFILE: LITE # # PROFILE: LITE #
......
...@@ -812,7 +812,6 @@ contract Deploy is Deployer { ...@@ -812,7 +812,6 @@ contract Deploy is Deployer {
/// @notice Initialize the L1ERC721Bridge /// @notice Initialize the L1ERC721Bridge
function initializeL1ERC721Bridge() public broadcast { function initializeL1ERC721Bridge() public broadcast {
console.log("Upgrading and initializing L1ERC721Bridge proxy"); console.log("Upgrading and initializing L1ERC721Bridge proxy");
ProxyAdmin proxyAdmin = ProxyAdmin(mustGetAddress("ProxyAdmin"));
address l1ERC721BridgeProxy = mustGetAddress("L1ERC721BridgeProxy"); address l1ERC721BridgeProxy = mustGetAddress("L1ERC721BridgeProxy");
address l1ERC721Bridge = mustGetAddress("L1ERC721Bridge"); address l1ERC721Bridge = mustGetAddress("L1ERC721Bridge");
address superchainConfigProxy = mustGetAddress("SuperchainConfigProxy"); address superchainConfigProxy = mustGetAddress("SuperchainConfigProxy");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment