Commit 831a15ca authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: fix typo

parent f4c454d1
...@@ -110,9 +110,9 @@ contract Deploy is Deployer { ...@@ -110,9 +110,9 @@ contract Deploy is Deployer {
} }
/// @notice Modifier that will only allow a function to be called on devnet. /// @notice Modifier that will only allow a function to be called on devnet.
modifier onlyDevnet() internal view returns (bool) { modifier onlyDevnet() {
uint256 chainid = block.chainid; uint256 chainid = block.chainid;
if chaind != Chains.LocalDevnet && chainid != Chains.GethDevnet { if (chainid != Chains.LocalDevnet && chainid != Chains.GethDevnet) {
_; _;
} }
} }
...@@ -370,9 +370,6 @@ contract Deploy is Deployer { ...@@ -370,9 +370,6 @@ contract Deploy is Deployer {
save("PreimageOracle", address(preimageOracle)); save("PreimageOracle", address(preimageOracle));
console.log("PreimageOracle deployed at %s", address(preimageOracle)); console.log("PreimageOracle deployed at %s", address(preimageOracle));
string memory version = preimageOracle.version();
console.log("PreimageOracle version: %s", version);
return address(preimageOracle); return address(preimageOracle);
} }
...@@ -382,9 +379,6 @@ contract Deploy is Deployer { ...@@ -382,9 +379,6 @@ contract Deploy is Deployer {
save("Mips", address(mips)); save("Mips", address(mips));
console.log("MIPS deployed at %s", address(mips)); console.log("MIPS deployed at %s", address(mips));
string memory version = mips.version();
console.log("MIPS version: %s", version);
return address(mips); return address(mips);
} }
......
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