Skip to content

Commit

Permalink
fix: duplicate userop removal
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSulpiride committed Apr 1, 2024
1 parent e9e1fec commit 791168f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion packages/api/src/modules/debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Debug } from "executor/lib/modules";
import { IsEthereumAddress } from "class-validator";
import { BundlingMode } from "types/lib/api/interfaces";
import { GetStakeStatus } from "executor/lib/interfaces";
import { MempoolEntrySerialized } from "executor/src/entities/interfaces";
import { MempoolEntrySerialized } from "executor/lib/entities/interfaces";
import { RpcMethodValidator } from "../utils/RpcMethodValidator";
import {
SetReputationArgs,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ export class EchoRelayer extends BaseRelayer {
await this.waitForEntries(entries).catch((err) =>
this.logger.error(err, "Echo: Could not find transaction")
);
await this.mempoolService.removeAll(entries);
this.reportSubmittedUserops(txHash, bundle);
})
.catch(async (err: any) => {
Expand Down

0 comments on commit 791168f

Please sign in to comment.