-
Notifications
You must be signed in to change notification settings - Fork 20
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
fix: Removing IgnoreList from Lane Interface #245
Merged
Merged
Conversation
This file contains 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
aljo242
reviewed
Nov 28, 2023
nivasan1
reviewed
Nov 28, 2023
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.
I feel like this implementation forces devs to be aware of the implementation details of the other configured lanes. I.e if I have Lane1 and Lane2, but there is a specific tx-type that matches to both, I can no longer have both lanes in my app.
aljo242
approved these changes
Nov 29, 2023
davidterpay
added
backport/v1.x.x
Backport your PR to the v1.x.x release
backport/v2.x.x
Backport your PR to the v2.x.x release
labels
Nov 29, 2023
mergify bot
pushed a commit
that referenced
this pull request
Nov 29, 2023
* greedy approach to lane verification * docs * base lane testing * mev lane testing nits * abci top level testing done * network spamming in E2E * string rep of escrow address * nit * nit * nit v1.0.1 * removing logs from testing * query test * logging with tx info * nits * nit * nit * testing nit * adding readmes which i will fill out l8r * removing ignore list from convo, ur done * removing logs in testing * nits * eh ig we dont need it rn * removing ignore list from config * nit test --------- Co-authored-by: Alex Johnson <[email protected]> (cherry picked from commit b91cfb6) # Conflicts: # abci/abci_test.go # block/base/lane.go # block/lane.go # block/mempool.go # block/mempool_test.go # block/mocks/lane.go # block/proposals/proposals_test.go # tests/app/app.go
mergify bot
pushed a commit
that referenced
this pull request
Nov 29, 2023
* greedy approach to lane verification * docs * base lane testing * mev lane testing nits * abci top level testing done * network spamming in E2E * string rep of escrow address * nit * nit * nit v1.0.1 * removing logs from testing * query test * logging with tx info * nits * nit * nit * testing nit * adding readmes which i will fill out l8r * removing ignore list from convo, ur done * removing logs in testing * nits * eh ig we dont need it rn * removing ignore list from config * nit test --------- Co-authored-by: Alex Johnson <[email protected]> (cherry picked from commit b91cfb6) # Conflicts: # abci/abci_test.go # block/base/lane.go # block/lane.go # block/mempool.go # block/mempool_test.go # block/mocks/lane.go # block/proposals/proposals_test.go # tests/app/app.go
davidterpay
added a commit
that referenced
this pull request
Dec 1, 2023
* fix: Removing IgnoreList from Lane Interface (#245) * greedy approach to lane verification * docs * base lane testing * mev lane testing nits * abci top level testing done * network spamming in E2E * string rep of escrow address * nit * nit * nit v1.0.1 * removing logs from testing * query test * logging with tx info * nits * nit * nit * testing nit * adding readmes which i will fill out l8r * removing ignore list from convo, ur done * removing logs in testing * nits * eh ig we dont need it rn * removing ignore list from config * nit test --------- Co-authored-by: Alex Johnson <[email protected]> (cherry picked from commit b91cfb6) # Conflicts: # abci/abci_test.go # block/base/lane.go # block/lane.go # block/mempool.go # block/mempool_test.go # block/mocks/lane.go # block/proposals/proposals_test.go # tests/app/app.go * why are there so many conflicts * more conflicts * fixing merge --------- Co-authored-by: David Terpay <[email protected]> Co-authored-by: David Terpay <[email protected]>
davidterpay
added a commit
that referenced
this pull request
Dec 1, 2023
* fix: Removing IgnoreList from Lane Interface (#245) * greedy approach to lane verification * docs * base lane testing * mev lane testing nits * abci top level testing done * network spamming in E2E * string rep of escrow address * nit * nit * nit v1.0.1 * removing logs from testing * query test * logging with tx info * nits * nit * nit * testing nit * adding readmes which i will fill out l8r * removing ignore list from convo, ur done * removing logs in testing * nits * eh ig we dont need it rn * removing ignore list from config * nit test --------- Co-authored-by: Alex Johnson <[email protected]> (cherry picked from commit b91cfb6) # Conflicts: # abci/abci_test.go # block/base/lane.go # block/lane.go # block/mempool.go # block/mempool_test.go # block/mocks/lane.go # block/proposals/proposals_test.go # tests/app/app.go * why are there so many conflicts * fixing merge * timing in e2e --------- Co-authored-by: David Terpay <[email protected]> Co-authored-by: David Terpay <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
backport/v1.x.x
Backport your PR to the v1.x.x release
backport/v2.x.x
Backport your PR to the v2.x.x release
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.
This PR deprecates the use of
IgnoreLists
on lanes - which have been a pita. We can achieve the same outcome with much less code and better separation of concerns by moving what lanes a given lane wants to ignore by moving that logic to the match handler of each lane.