-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
flag to remove stuck txs #90
Conversation
packages/cli/src/config/options.ts
Outdated
description: "Should the bundler try to flush out all stuck pending transactions on startup", | ||
type: "bool", | ||
default: false, | ||
require: false, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
require true
packages/cli/src/config/options.ts
Outdated
@@ -172,6 +172,12 @@ export const bundlerOptions: CliCommandOptions<IBundlerArgsInput> = { | |||
description: "Max block range for rpc calls", | |||
type: "number", | |||
require: false, | |||
}, | |||
flushStuckTransactionsDuringStartUp: { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
StartUp->Startup
packages/cli/src/config/options.ts
Outdated
flushStuckTransactionsDuringStartup: { | ||
description: "Should the bundler try to flush out all stuck pending transactions on startup", | ||
type: "boolean", | ||
require: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh i'd keep default false
fbf3e83
to
98db66a
Compare
No description provided.