Commit a1cce3c9 authored by OptimismBot's avatar OptimismBot Committed by GitHub

Merge pull request #5548 from ethereum-optimism/fix/semver-bridge

contracts-bedrock: fix out of date semver
parents 5661cb3e 4931090d
This diff is collapsed.
...@@ -20,13 +20,13 @@ contract L1ERC721Bridge is ERC721Bridge, Semver { ...@@ -20,13 +20,13 @@ contract L1ERC721Bridge is ERC721Bridge, Semver {
mapping(address => mapping(address => mapping(uint256 => bool))) public deposits; mapping(address => mapping(address => mapping(uint256 => bool))) public deposits;
/** /**
* @custom:semver 1.0.0 * @custom:semver 1.1.1
* *
* @param _messenger Address of the CrossDomainMessenger on this network. * @param _messenger Address of the CrossDomainMessenger on this network.
* @param _otherBridge Address of the ERC721 bridge on the other network. * @param _otherBridge Address of the ERC721 bridge on the other network.
*/ */
constructor(address _messenger, address _otherBridge) constructor(address _messenger, address _otherBridge)
Semver(1, 1, 0) Semver(1, 1, 1)
ERC721Bridge(_messenger, _otherBridge) ERC721Bridge(_messenger, _otherBridge)
{} {}
......
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