Merge pull request #2761 from WALL-E/patch-1

fix typo
This commit is contained in:
Jack Zampolin
2018-11-12 12:21:31 -08:00
committed by GitHub
+1 -1
View File
@@ -72,7 +72,7 @@ func (p Params) HumanReadableString() string {
resp := "Params \n"
resp += fmt.Sprintf("Unbonding Time: %s\n", p.UnbondingTime)
resp += fmt.Sprintf("Max Validators: %d: \n", p.MaxValidators)
resp += fmt.Sprintf("Max Validators: %d\n", p.MaxValidators)
resp += fmt.Sprintf("Bonded Coin Denomination: %s\n", p.BondDenom)
return resp
}