-
Notifications
You must be signed in to change notification settings - Fork 38
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
Host: Fix bug causing unnecessary multiplier on L1 gas fees #1747
Conversation
WalkthroughThe update modifies the strategy for calculating gas prices for transaction retries in the Ethereum adapter. It involves a change in the algorithm, specifically in how the retryFloat and multiplier values are computed, to ensure that the gas price is determined more effectively. The use of Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
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.
Review Status
Actionable comments generated: 0
Configuration used: CodeRabbit UI
Files selected for processing (1)
- go/ethadapter/geth_rpc_client.go (1 hunks)
Additional comments: 2
go/ethadapter/geth_rpc_client.go (2)
- 262-262: The change from
math.Max
tomath.Min
correctly addresses the issue described in the PR, ensuring that the retryFloat does not prematurely apply the maximum multiplier.- 264-264: The added comment provides clear explanation of the multiplier's logic, which is beneficial for maintainability and understanding of the code.
Why this change is needed
I put Max instead of Min to cap the gas multiplier after repeated retries. This meant it was always doing max multiplier from the first attempt.
PR checks pre-merging
Please indicate below by ticking the checkbox that you have read and performed the required
PR checks