mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-28 04:01:40 +00:00
Change error output format for better SDK and Voyager UX (#2648)
* Change error output format
* Update tests
* 🤦
* apply suggestion
This commit is contained in:
committed by
Ethan Buchman
parent
d20693fb16
commit
6a07f415e9
@ -146,7 +146,7 @@ func (err *cmnError) Format(s fmt.State, verb rune) {
|
||||
s.Write([]byte("--= /Error =--\n"))
|
||||
} else {
|
||||
// Write msg.
|
||||
s.Write([]byte(fmt.Sprintf("Error{%v}", err.data))) // TODO tick-esc?
|
||||
s.Write([]byte(fmt.Sprintf("%v", err.data)))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user