fix the weird non-alphanumeric key issue

This commit is contained in:
ValarDragon 2018-10-16 21:49:29 -07:00
parent 20cc13e5bf
commit 8d59b51dfe
1 changed files with 3 additions and 3 deletions

View File

@ -13,9 +13,9 @@ var (
ProposerKey = []byte{0x04} // key for storing the proposer operator address ProposerKey = []byte{0x04} // key for storing the proposer operator address
// params store // params store
ParamStoreKeyCommunityTax = []byte("community-tax") ParamStoreKeyCommunityTax = []byte("CommunityTax")
ParamStoreKeyBaseProposerReward = []byte("base-proposer-reward") ParamStoreKeyBaseProposerReward = []byte("BaseProposerReward")
ParamStoreKeyBonusProposerReward = []byte("bonus-proposer-reward") ParamStoreKeyBonusProposerReward = []byte("BonusProposerReward")
) )
const ( const (