From 3bc245e198252ac692f8788c2a76d848dfc28a3c Mon Sep 17 00:00:00 2001 From: zhangzheng Date: Sun, 11 Nov 2018 09:20:30 +0800 Subject: [PATCH] fix typo I think it might be a spelling mistake --- x/stake/types/params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/stake/types/params.go b/x/stake/types/params.go index 699758ace4..88e060f793 100644 --- a/x/stake/types/params.go +++ b/x/stake/types/params.go @@ -69,7 +69,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 }