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

Merge pull request #7510 from ethereum-optimism/ctb/comment-standard-bridge

contracts-bedrock: add comment to `StandardBridge`
parents c6a9f1c6 ddb6d809
......@@ -24,6 +24,10 @@ abstract contract StandardBridge is Initializable {
/// @notice Corresponding bridge on the other domain. This public getter is deprecated
/// and will be removed in the future. Please use `otherBridge` instead.
/// This can safely be an immutable because for the L1StandardBridge, it will
/// be set to the L2StandardBridge address, which is the same for all OP Stack
/// chains. For the L2StandardBridge, there are not multiple proxies using the
/// same implementation.
/// @custom:legacy
/// @custom:network-specific
StandardBridge public immutable OTHER_BRIDGE;
......
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