Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem: Cronos params name has an unnecessary Key prefix #185

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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