Skip to content

Commit e20b91c

Browse files
committed
fix build
1 parent 37c33c7 commit e20b91c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/rpc/methods/debug_bundler_dumpMempool.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ export const debugBundlerDumpMempoolHandler = createMethodHandler({
99
rpcHandler.ensureDebugEndpointsAreEnabled("debug_bundler_dumpMempool")
1010
rpcHandler.ensureEntryPointIsSupported(entryPoint)
1111

12-
return await rpcHandler.mempool.dumpOutstanding(entryPoint)
12+
return (await rpcHandler.mempool.dumpOutstanding(entryPoint)).map(
13+
({ userOp }) => userOp
14+
)
1315
}
1416
})

0 commit comments

Comments
 (0)