Skip to content

Commit

Permalink
Problem: Cronos params name has an unnecessary Key prefix (#185)
Browse files Browse the repository at this point in the history
* Problem: Cronos params name has an unnecessary Key prefix

Solution: (Fix #184) Remove the `Key` from params name

* Remove missing Key
  • Loading branch information
calvinaco authored Oct 22, 2021
1 parent 4826ffc commit 9253a2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions x/cronos/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ 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")
KeyEnableAutoDeployment = []byte("EnableAutoDeployment")
)

const IbcCroDenomDefaultValue = "ibc/6B5A664BF0AF4F71B2F0BAA33141E2F1321242FBD5D19762F541EC971ACB0865"
Expand Down

0 comments on commit 9253a2d

Please sign in to comment.