Skip to content

Commit a2f4ff8

Browse files
committed
chore(base): fix comments
1 parent e06b326 commit a2f4ff8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

base/src/Bridge.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ contract Bridge is ReentrancyGuardTransient, Initializable {
110110
/// @notice Address of the trusted relayer.
111111
address public immutable TRUSTED_RELAYER;
112112

113-
/// @notice Gas required to run the execution section of `__validateAndRelay`..
113+
/// @notice Gas required to run the execution prologue section of `__validateAndRelay`.
114114
///
115115
/// @dev Simulated via a forge test performing a call to `relayMessages` with a single message where:
116116
/// - The execution and the execution epilogue sections were commented out to isolate the execution section.
@@ -253,7 +253,7 @@ contract Bridge is ReentrancyGuardTransient, Initializable {
253253
/// @param message The message to relay.
254254
/// @param isTrustedRelayer Whether the caller was the trusted relayer.
255255
function __validateAndRelay(IncomingMessage calldata message, bool isTrustedRelayer) external {
256-
// // ==================== METERED GAS SECTION: Execution Prologue ==================== //
256+
// ==================== METERED GAS SECTION: Execution Prologue ==================== //
257257
_assertSenderIsEntrypoint();
258258

259259
// NOTE: Intentionally not including the gas limit in the hash to allow for replays with higher gas limits.

0 commit comments

Comments
 (0)