mirror of
https://github.com/tendermint/tendermint.git
synced 2026-07-22 07:52:44 +00:00
4b0058dd64
Fixes #134 Those functions are unused in the whole Tendermint Github organization plus they were unnecessariy verbose and could have been concisely replaced with ```go func RightPadString(s string, totalLength uint) string { return fmt.Sprintf("% *s", totalLength, s) } func LeftPadString(s string, totalLength uint) string { return fmt.Sprintf("% -*s", totalLength, s) } ``` delete them anyways