From 47a174099d430f74218d2ae8b1dd18ae496a019d Mon Sep 17 00:00:00 2001 From: mouseless <97399882+mouseless-eth@users.noreply.github.com> Date: Mon, 30 Sep 2024 13:04:57 +0100 Subject: [PATCH] mark wallet as processed after frontrun checks --- src/executor/executorManager.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/executor/executorManager.ts b/src/executor/executorManager.ts index c343f58a..57d888e6 100644 --- a/src/executor/executorManager.ts +++ b/src/executor/executorManager.ts @@ -522,6 +522,7 @@ export class ExecutorManager { opInfos.map(({ userOperationHash }) => { this.mempool.removeSubmitted(userOperationHash) }) + this.executor.markWalletProcessed(transactionInfo.executor) } }