tendermint/types/util.go

44 lines
848 B
Go
Raw Normal View History

2016-11-21 23:42:42 -05:00
package types
import (
"bytes"
"encoding/json"
2016-11-21 23:42:42 -05:00
)
2017-12-01 00:51:20 -05:00
//------------------------------------------------------------------------------
2017-12-01 00:41:07 -05:00
// Validators is a list of validators that implements the Sort interface
type Validators []Validator
2016-11-21 23:42:42 -05:00
func (v Validators) Len() int {
return len(v)
}
// XXX: doesn't distinguish same validator with different power
func (v Validators) Less(i, j int) bool {
return bytes.Compare(v[i].PubKey, v[j].PubKey) <= 0
}
func (v Validators) Swap(i, j int) {
v1 := v[i]
v[i] = v[j]
v[j] = v1
}
2016-11-23 18:22:44 -05:00
func ValidatorsString(vs Validators) string {
s := make([]validatorPretty, len(vs))
for i, v := range vs {
s[i] = validatorPretty(v)
2016-11-23 18:22:44 -05:00
}
2017-05-15 12:59:44 -04:00
b, err := json.Marshal(s)
if err != nil {
panic(err.Error())
2017-05-15 12:59:44 -04:00
}
return string(b)
2016-11-23 18:22:44 -05:00
}
2017-12-01 00:51:20 -05:00
type validatorPretty struct {
PubKey []byte `json:"pub_key"`
Power int64 `json:"power"`
2017-12-01 00:51:20 -05:00
}