Commit 249fcc74 authored by Mark Tyneway's avatar Mark Tyneway

contracts-bedrock: gas snapshot, natspec

parent 996d1f1e
This diff is collapsed.
......@@ -167,7 +167,7 @@ contract OptimismPortal is Initializable, ResourceMetering, Semver {
}
/**
* @notice
* @notice Pause deposits and withdrawals.
*/
function pause() external {
require(msg.sender == GUARDIAN, "OptimismPortal: only guardian can pause");
......@@ -176,7 +176,7 @@ contract OptimismPortal is Initializable, ResourceMetering, Semver {
}
/**
* @notice
* @notice Unpause deposits and withdrawals.
*/
function unpause() external {
require(msg.sender == GUARDIAN, "OptimismPortal: only guardian can unpause");
......
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