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 d15d522 commit f7887daCopy full SHA for f7887da
src/worker/tasks/processTx.ts
@@ -304,15 +304,12 @@ export const processTx = async () => {
304
305
const nonce = randomNonce();
306
try {
307
- const userOp = await signer.smartAccountAPI.createSignedUserOp(
308
- {
309
- target: tx.target || "",
310
- data: tx.data || "0x",
311
- value: tx.value ? BigNumber.from(tx.value) : undefined,
312
- nonce,
313
- },
314
- false,
315
- );
+ const userOp = await signer.smartAccountAPI.createSignedUserOp({
+ target: tx.target || "",
+ data: tx.data || "0x",
+ value: tx.value ? BigNumber.from(tx.value) : undefined,
+ nonce,
+ });
316
const userOpHash = await signer.smartAccountAPI.getUserOpHash(
317
userOp,
318
);
0 commit comments