Skip to content

Commit

Permalink
contracts-bedrock: add underscore to var in L2ToL2CrossDomainMessenger
Browse files Browse the repository at this point in the history
  • Loading branch information
0xfuturistic committed Apr 1, 2024
1 parent c796bc1 commit 74c99f8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@ contract L2ToL2CrossDomainMessenger is IL2ToL2CrossDomainMessenger, ISemver {
}

/// @notice Calls the target account with the message payload and all available gas.
function _callWithAllGas(address _target, bytes memory _msg) internal returns (bool success) {
function _callWithAllGas(address _target, bytes memory _msg) internal returns (bool _success) {
assembly {
success :=
_success :=
call(
gas(), // gas
_target, // recipient
Expand Down

0 comments on commit 74c99f8

Please sign in to comment.