Skip to content

Commit

Permalink
Change authz module name from const to var
Browse files Browse the repository at this point in the history
  • Loading branch information
leeyikjiun committed Feb 15, 2022
1 parent 6c7e457 commit d1aab4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion x/authz/keeper/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var (
)

// StoreKey is the store key string for authz
const StoreKey = authz.ModuleName
var StoreKey = authz.ModuleName

// grantStoreKey - return authorization store key
// Items are stored with the following key: values
Expand Down
2 changes: 1 addition & 1 deletion x/authz/keys.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package authz

const (
var (
// ModuleName is the module name constant used in many places
ModuleName = "authz"

Expand Down

0 comments on commit d1aab4c

Please sign in to comment.