-
Notifications
You must be signed in to change notification settings - Fork 36
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
feat: integrate x/feemarket #250
Changes from 3 commits
132af2e
ed49d9a
7543a9b
13edc7f
1812619
f619cf2
9160c2b
2d3e1e4
4ee6a0f
efd056e
0125592
635809c
a5aabf5
81f31c0
0f68028
a01c721
6c8a858
28d1bb0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -80,9 +80,9 @@ | |||||||
case authtypes.ModuleName: | ||||||||
keyTable = authtypes.ParamKeyTable() //nolint:staticcheck | ||||||||
case banktypes.ModuleName: | ||||||||
keyTable = banktypes.ParamKeyTable() //nolint:staticcheck | ||||||||
keyTable = banktypes.ParamKeyTable() | ||||||||
case stakingtypes.ModuleName: | ||||||||
keyTable = stakingtypes.ParamKeyTable() //nolint:staticcheck | ||||||||
keyTable = stakingtypes.ParamKeyTable() | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Avoid using deprecated The method - keyTable = stakingtypes.ParamKeyTable()
+ // Use the recommended alternative for stakingtypes.ParamKeyTable
+ keyTable = stakingtypes.NewParamKeyTable() Committable suggestion
Suggested change
Toolsgolangci-lint
GitHub Check: lint
|
||||||||
case minttypes.ModuleName: | ||||||||
keyTable = minttypes.ParamKeyTable() //nolint:staticcheck | ||||||||
case distrtypes.ModuleName: | ||||||||
|
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.
Avoid using deprecated
banktypes.ParamKeyTable
.The method
banktypes.ParamKeyTable
is deprecated. Consider using the recommended alternatives.Tools
golangci-lint
GitHub Check: lint