Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
livingrockrises committed Dec 20, 2023
1 parent 0f6c10a commit ffeceac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions test/token-paymaster/biconomy-token-paymaster-specs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -339,8 +339,6 @@ describe("Biconomy Token Paymaster", function () {
);
console.log("pnd ", userOp.paymasterAndData);

console.log("pnd ", userOp.paymasterAndData);

const signatureWithModuleAddress = ethers.utils.defaultAbiCoder.encode(
["bytes", "address"],
[userOp.signature, ecdsaModule.address]
Expand Down
10 changes: 5 additions & 5 deletions test/utils/userOp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,11 +318,11 @@ export async function fillAndSign(
op2.preVerificationGas =
Number(op2.preVerificationGas) + extraPreVerificationGas;

console.log("user op max fee per gas ", op2.maxFeePerGas.toString());
console.log(
"user op max priority fee per gas ",
op2.maxPriorityFeePerGas.toString()
);
// console.log("user op max fee per gas ", op2.maxFeePerGas.toString());
// console.log(
// "user op max priority fee per gas ",
// op2.maxPriorityFeePerGas.toString()
// );

const chainId = await provider!.getNetwork().then((net) => net.chainId);
const message = arrayify(getUserOpHash(op2, entryPoint!.address, chainId));
Expand Down

0 comments on commit ffeceac

Please sign in to comment.