Skip to content

Commit

Permalink
restore default field
Browse files Browse the repository at this point in the history
  • Loading branch information
mouseless0x committed Jan 20, 2024
1 parent 1bd05ac commit fbf3e83
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions packages/cli/src/config/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,12 @@ export const bundlerOptions: CliCommandOptions<IBundlerArgsInput> = {
require: true,
default: false
},
flushStuckTransactionsDuringStartup: {
description: "Should the bundler try to flush out all stuck pending transactions on startup",
type: "boolean",
require: true,
default: false,
},
customGasLimitForEstimation: {
description: "Custom gas limit for estimation",
type: "string"
Expand Down Expand Up @@ -173,11 +179,6 @@ export const bundlerOptions: CliCommandOptions<IBundlerArgsInput> = {
type: "number",
require: false,
},
flushStuckTransactionsDuringStartup: {
description: "Should the bundler try to flush out all stuck pending transactions on startup",
type: "boolean",
require: true,
}
}

export const bundlerCommand: CliCommand<IBundlerArgsInput> = {
Expand Down

0 comments on commit fbf3e83

Please sign in to comment.