Skip to content

Commit 9253a2d

Browse files
authored
Problem: Cronos params name has an unnecessary Key prefix (#185)
* Problem: Cronos params name has an unnecessary Key prefix Solution: (Fix #184) Remove the `Key` from params name * Remove missing Key
1 parent 4826ffc commit 9253a2d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

x/cronos/types/params.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ var (
1313
// KeyIbcCroDenom is store's key for the IBC Cro denomination
1414
KeyIbcCroDenom = []byte("IbcCroDenom")
1515
// KeyIbcTimeout is store's key for the IBC Timeout
16-
KeyIbcTimeout = []byte("KeyIbcTimeout")
16+
KeyIbcTimeout = []byte("IbcTimeout")
1717
// KeyCronosAdmin is store's key for the admin address
18-
KeyCronosAdmin = []byte("KeyCronosAdmin")
18+
KeyCronosAdmin = []byte("CronosAdmin")
1919
// KeyEnableAutoDeployment is store's key for the EnableAutoDeployment
20-
KeyEnableAutoDeployment = []byte("KeyEnableAutoDeployment")
20+
KeyEnableAutoDeployment = []byte("EnableAutoDeployment")
2121
)
2222

2323
const IbcCroDenomDefaultValue = "ibc/6B5A664BF0AF4F71B2F0BAA33141E2F1321242FBD5D19762F541EC971ACB0865"

0 commit comments

Comments
 (0)