Skip to content

Commit

Permalink
Problem: Cronos params name has an unnecessary Key prefix
Browse files Browse the repository at this point in the history
Solution: (Fix #184) Remove the `Key` from params name
  • Loading branch information
calvinaco committed Oct 21, 2021
1 parent 4826ffc commit c044e37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/cronos/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ var (
// KeyIbcCroDenom is store's key for the IBC Cro denomination
KeyIbcCroDenom = []byte("IbcCroDenom")
// KeyIbcTimeout is store's key for the IBC Timeout
KeyIbcTimeout = []byte("KeyIbcTimeout")
KeyIbcTimeout = []byte("IbcTimeout")
// KeyCronosAdmin is store's key for the admin address
KeyCronosAdmin = []byte("KeyCronosAdmin")
KeyCronosAdmin = []byte("CronosAdmin")
// KeyEnableAutoDeployment is store's key for the EnableAutoDeployment
KeyEnableAutoDeployment = []byte("KeyEnableAutoDeployment")
)
Expand Down

0 comments on commit c044e37

Please sign in to comment.