-
Notifications
You must be signed in to change notification settings - Fork 296
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
testing: Add integration test for tx prioritization #513
Comments
Note from synchronous discussion @evan-forbes @musalbas :
|
as discussed in the linked comments, it looks like we should just just the v0 mempool and sort the tx by fee ourselves, or wait and use the default app side mempool coming in v0.47.0 of the sdk |
we should still create a test to ensure that we don't accidentally break fee prioritization by default. |
to update this, we are just planning on using the v1 mempool now. It will not be deprecated until at least v0.38.0 of tendermint. We should have a custom mempool by then anyway. We can leave this open as its a nice to have, but having a test for the prioritized mempool is a bit redundant so its not a priority |
## Overview adds a simple integration test for tx priority in the mempool closes #513 ## Checklist - [x] New and updated code has appropriate documentation - [x] New and updated code has new and/or updated testing - [x] Required CI checks are passing - [x] Visual proof for any user facing features like CLI or documentation updates - [x] Linked issues closed with keywords --------- Co-authored-by: Rootul Patel <rootulp@gmail.com>
## Overview adds a simple integration test for tx priority in the mempool closes #513 ## Checklist - [x] New and updated code has appropriate documentation - [x] New and updated code has new and/or updated testing - [x] Required CI checks are passing - [x] Visual proof for any user facing features like CLI or documentation updates - [x] Linked issues closed with keywords --------- Co-authored-by: Rootul Patel <rootulp@gmail.com> (cherry picked from commit 58c1e4e) # Conflicts: # Makefile
When we upgraded to cosmos-sdk v0.46, we gain the ability prioritized txs in the mempool. Since this feature is so critical, we need to test this in an integration test.
The text was updated successfully, but these errors were encountered: