Skip to content

Commit a3a6db8

Browse files
authored
Fix typo in ERC4337Utils.paymasterData comments (#5333)
1 parent 78be1b3 commit a3a6db8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/account/utils/draft-ERC4337Utils.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ library ERC4337Utils {
154154
return self.paymasterAndData.length < 52 ? 0 : uint128(bytes16(self.paymasterAndData[36:52]));
155155
}
156156

157-
/// @dev Returns the forth section of `paymasterAndData` from the {PackedUserOperation}.
157+
/// @dev Returns the fourth section of `paymasterAndData` from the {PackedUserOperation}.
158158
function paymasterData(PackedUserOperation calldata self) internal pure returns (bytes calldata) {
159159
return self.paymasterAndData.length < 52 ? _emptyCalldataBytes() : self.paymasterAndData[52:];
160160
}

0 commit comments

Comments
 (0)