Skip to content

Commit

Permalink
Added staking parameter key table
Browse files Browse the repository at this point in the history
  • Loading branch information
Eengineer1 committed Feb 27, 2024
1 parent b8460cd commit 1494492
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,8 @@ func initParamsKeeper(appCodec codec.BinaryCodec, legacyAmino *codec.LegacyAmino
paramsKeeper.Subspace(authtypes.ModuleName)
//nolint: staticcheck
paramsKeeper.Subspace(banktypes.ModuleName).WithKeyTable(banktypes.ParamKeyTable())
paramsKeeper.Subspace(stakingtypes.ModuleName)
//nolint: staticcheck

Check failure on line 977 in app/app.go

View workflow job for this annotation

GitHub Actions / Lint / Golang

directive `//nolint: staticcheck` is unused for linter "staticcheck" (nolintlint)
paramsKeeper.Subspace(stakingtypes.ModuleName).WithKeyTable(stakingtypes.ParamKeyTable())
//nolint: staticcheck
paramsKeeper.Subspace(minttypes.ModuleName).WithKeyTable(minttypes.ParamKeyTable())
//nolint: staticcheck
Expand Down

0 comments on commit 1494492

Please sign in to comment.