Commit fccba46b authored by Mark Tyneway's avatar Mark Tyneway Committed by GitHub

ctp: remove unnecessary require (#3572)

There was a leftover require from when the contract
was `initializable`. This commit removes that because
it is no longer needed.
Co-authored-by: default avatarmergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
parent d98811e8
...@@ -68,11 +68,6 @@ contract OptimismMintableERC721Factory is Semver { ...@@ -68,11 +68,6 @@ contract OptimismMintableERC721Factory is Semver {
"OptimismMintableERC721Factory: L1 token address cannot be address(0)" "OptimismMintableERC721Factory: L1 token address cannot be address(0)"
); );
require(
bridge != address(0),
"OptimismMintableERC721Factory: bridge address must be initialized"
);
OptimismMintableERC721 localToken = new OptimismMintableERC721( OptimismMintableERC721 localToken = new OptimismMintableERC721(
bridge, bridge,
remoteChainId, remoteChainId,
......
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