-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Refactor Fixed Price estimator #13834
Conversation
Quality Gate passedIssues Measures |
if f.config.FeeCapDefault().Cmp(f.config.PriceMax()) != 0 { | ||
f.lggr.Infof("You are using FixedPrice estimator with gas bumping disabled. EVM.GasEstimator.PriceMax (value: %s) will be used as the FeeCap for transactions", f.config.PriceMax()) | ||
} | ||
func (f *FixedPriceEstimator) Start(context.Context) error { |
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.
TODO: add a check to prevent tip being higher than max fee
This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days. |
BCI-3751
Refactors Fixed Price estimator to work in a similar manner as Universal Estimator.
Requires Dependencies