Skip to content

Commit

Permalink
overriding max fee values
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticfloyd1984 committed Feb 5, 2024
1 parent 946e2a6 commit 816cc4f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions common/simulation/BundlerSimulationService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,9 @@ export class BundlerSimulationService {
const preVerificationGasEnd = performance.now();
log.info(`calcPreVerificationGas took: ${preVerificationGasEnd - preVerificationGasStart} milliseconds`);

userOp.maxPriorityFeePerGas = 100000000;
userOp.maxFeePerGas = 100000000;

log.info(`userOp to used to simulate in eth_call: ${JSON.stringify(userOp)} on chainId: ${chainId}`);

const { data } = await entryPointContract.populateTransaction.simulateHandleOp(
Expand Down

0 comments on commit 816cc4f

Please sign in to comment.