Skip to content

Commit

Permalink
Remove inline comment in function args
Browse files Browse the repository at this point in the history
  • Loading branch information
stevieraykatz committed Jul 29, 2024
1 parent 6c44385 commit 2b4322e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/L1/L1Resolver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ contract L1Resolver is IExtendedResolver, ERC165, Ownable {
/// @param data The ABI encoded data for the underlying resolution function (Eg, addr(bytes32), text(bytes32,string), etc).
///
/// @return The return data, ABI encoded identically to the underlying function.
function _resolve(bytes memory, /* name */ bytes memory data) internal view returns (bytes memory) {
function _resolve(bytes memory, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory result) = rootResolver.staticcall(data);
if (success) {
return result;
Expand Down

0 comments on commit 2b4322e

Please sign in to comment.