@@ -159,16 +159,16 @@ func (op *UserOperation) Pack() []byte {
159159// PackForSignature returns a minimal message of the userOp. This can be used to generate a userOpHash.
160160func (op * UserOperation ) PackForSignature () []byte {
161161 args := abi.Arguments {
162- {Name : "sender" , Type : address },
163- {Name : "nonce" , Type : uint256 },
164- {Name : "hashInitCode" , Type : bytes32 },
165- {Name : "hashCallData" , Type : bytes32 },
166- {Name : "callGasLimit" , Type : uint256 },
167- {Name : "verificationGasLimit" , Type : uint256 },
168- {Name : "preVerificationGas" , Type : uint256 },
169- {Name : "maxFeePerGas" , Type : uint256 },
170- {Name : "maxPriorityFeePerGas" , Type : uint256 },
171- {Name : "hashPaymasterAndData" , Type : bytes32 },
162+ abi. Argument {Name : "sender" , Type : address },
163+ abi. Argument {Name : "nonce" , Type : uint256 },
164+ abi. Argument {Name : "hashInitCode" , Type : bytes32 },
165+ abi. Argument {Name : "hashCallData" , Type : bytes32 },
166+ abi. Argument {Name : "callGasLimit" , Type : uint256 },
167+ abi. Argument {Name : "verificationGasLimit" , Type : uint256 },
168+ abi. Argument {Name : "preVerificationGas" , Type : uint256 },
169+ abi. Argument {Name : "maxFeePerGas" , Type : uint256 },
170+ abi. Argument {Name : "maxPriorityFeePerGas" , Type : uint256 },
171+ abi. Argument {Name : "hashPaymasterAndData" , Type : bytes32 },
172172 }
173173 packed , _ := args .Pack (
174174 op .Sender ,
0 commit comments