Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/cli/config/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,11 @@ export const bundlerOptions: CliCommandOptions<IBundlerArgsInput> = {
default: "20000000"
},
"max-bundle-count": {
// Cap is enforced in src/mempool/mempool.ts:725-773 (getBundles loop):
// it limits how many bundles `getBundles()` returns per iteration,
// not how many UserOperations end up inside a single bundle.
description:
"Maximum number of UserOperations to include in a bundle. If not set, no limit is applied.",
"Maximum number of bundles produced per getBundles iteration (caps loop output, not per-bundle UserOp count)",
type: "number",
require: false
},
Expand Down
1 change: 0 additions & 1 deletion src/rpc/methods/eth_sendUserOperation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,6 @@ export const ethSendUserOperationHandler = createMethodHandler({
method: "eth_sendUserOperation",
schema: sendUserOperationSchema,
handler: async ({ rpcHandler, params, apiVersion }) => {
console.log("=== eth_sendUserOperation called ===")
const [userOp, entryPoint] = params

let status: "added" | "queued" | "rejected" = "rejected"
Expand Down