We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78be1b3 commit a3a6db8Copy full SHA for a3a6db8
contracts/account/utils/draft-ERC4337Utils.sol
@@ -154,7 +154,7 @@ library ERC4337Utils {
154
return self.paymasterAndData.length < 52 ? 0 : uint128(bytes16(self.paymasterAndData[36:52]));
155
}
156
157
- /// @dev Returns the forth section of `paymasterAndData` from the {PackedUserOperation}.
+ /// @dev Returns the fourth section of `paymasterAndData` from the {PackedUserOperation}.
158
function paymasterData(PackedUserOperation calldata self) internal pure returns (bytes calldata) {
159
return self.paymasterAndData.length < 52 ? _emptyCalldataBytes() : self.paymasterAndData[52:];
160
0 commit comments