-
Notifications
You must be signed in to change notification settings - Fork 905
fix(authz): remove distribution authorizations from testnet #1957
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
ENG-2256 Fix grants query because of Distribution authorization
ContextCurrently the query for grants by grantee on testnet is broken. This is the case because of the ExpectedFix the query. This will probably include re-adding the deleted type on the Cosmos SDK. |
@MalteHerrmann please rebase to |
Codecov Report
@@ Coverage Diff @@
## release/v15.0.x #1957 +/- ##
===================================================
+ Coverage 70.35% 70.37% +0.01%
===================================================
Files 319 319
Lines 23540 23528 -12
===================================================
- Hits 16562 16557 -5
+ Misses 6158 6149 -9
- Partials 820 822 +2
|
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.
Great work @MalteHerrmann !
Co-authored-by: stepit <48993133+0xstepit@users.noreply.github.com>
…ve-dist-authz-testnet # Conflicts: # app/app.go # app/upgrades/v15rc2/upgrades.go
Description
This PR adds the necessary logic to remove the distribution authorizations from testnet. For context, this authz type was only added for release candidates on testnet and removed thereafter. Since switching to a Cosmos SDK version that didn't contain this data type, e.g. the
evmosd q authz grants-by-grantee
query is broken. The remnant data on testnet needs to be removed in order for this to be fixed.Closes ENG-2256