-
Notifications
You must be signed in to change notification settings - Fork 132
fix(l2): revert breaking when budget is reached for privileged txs #5326
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
Conversation
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.
Pull Request Overview
This PR reverts a previous change that caused integration tests to run longer and require more retries. The change replaces a break statement with txs.pop(); continue; when the privileged transaction budget is reached, allowing the block producer to continue processing other transactions instead of stopping entirely.
- Reverted logic from breaking to continuing when privileged transaction budget is reached
- Added an issue reference for properly addressing the underlying problem later
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Lines of code reportTotal lines added: Detailed view |
…ambdaclass#5326) **Motivation** [This](lambdaclass#5135 (comment)) change made the integration tests took longer, having to amp the amount of retries. <!-- Why does this pull request exist? What are its goals? --> **Description** Reverts this change and adds an [issue](lambdaclass#5325) for solving it. <!-- A clear and concise general description of the changes this PR introduces --> <!-- Link to issues: Resolves lambdaclass#111, Resolves lambdaclass#222 -->
Motivation
This change made the integration tests took longer, having to amp the amount of retries.
Description
Reverts this change and adds an issue for solving it.