Only check allowance of liquidity sources that are actually used#4190
Merged
MartinquaXD merged 6 commits intomainfrom Feb 24, 2026
Merged
Only check allowance of liquidity sources that are actually used#4190MartinquaXD merged 6 commits intomainfrom
MartinquaXD merged 6 commits intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
Code Review
This pull request removes the pre-fetching of allowances for liquidity sources to improve performance, based on the assumption that these allowances are fetched again later in the transaction encoding process. The implementation correctly removes the solver::interactions::allowances module and its usages across various liquidity source implementations. However, a critical issue has been identified: tests in multiple files have been commented out instead of being updated or removed. This significantly reduces test coverage and confidence in the correctness of the changes. The tests must be restored and adapted to the new logic.
fafk
approved these changes
Feb 24, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Currently a lot of CPU time (~3.5%) is spent on fetching allowances for the liquidity sources we index. This is problematic for 2 reasons:
Changes
deleted
solver::interactions::allowancesand it's usagesHow to test
e2e tests still work