From 8d59b51dfe94664641746cb6734a0f6fcd528310 Mon Sep 17 00:00:00 2001 From: ValarDragon Date: Tue, 16 Oct 2018 21:49:29 -0700 Subject: [PATCH] fix the weird non-alphanumeric key issue --- x/distribution/keeper/key.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x/distribution/keeper/key.go b/x/distribution/keeper/key.go index 2e59890810..d139f02b87 100644 --- a/x/distribution/keeper/key.go +++ b/x/distribution/keeper/key.go @@ -13,9 +13,9 @@ var ( ProposerKey = []byte{0x04} // key for storing the proposer operator address // params store - ParamStoreKeyCommunityTax = []byte("community-tax") - ParamStoreKeyBaseProposerReward = []byte("base-proposer-reward") - ParamStoreKeyBonusProposerReward = []byte("bonus-proposer-reward") + ParamStoreKeyCommunityTax = []byte("CommunityTax") + ParamStoreKeyBaseProposerReward = []byte("BaseProposerReward") + ParamStoreKeyBonusProposerReward = []byte("BonusProposerReward") ) const (