Commit 47444c4f authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: fix compile time

parent 2ca771a6
...@@ -98,7 +98,7 @@ contract Multichain is SafeBuilder { ...@@ -98,7 +98,7 @@ contract Multichain is SafeBuilder {
NETWORK = vm.envOr("NETWORK", GOERLI_PROD); NETWORK = vm.envOr("NETWORK", GOERLI_PROD);
// TODO: hack // TODO: hack
PROXY_ADMIN = ProxyAdmin(vm.envAddress("PROXY_ADMIN")); PROXY_ADMIN = ProxyAdmin(vm.envOr("PROXY_ADMIN", 0x01d3670863c3F4b24D7b107900f0b75d4BbC6e0d));
// For simple comparisons of dynamic types // For simple comparisons of dynamic types
bytes32 network = keccak256(bytes(NETWORK)); bytes32 network = keccak256(bytes(NETWORK));
......
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