tendermint/types/validator.go

75 lines
1.5 KiB
Go
Raw Normal View History

2016-11-21 23:42:42 -05:00
package types
import (
"bytes"
"encoding/json"
"sort"
2018-05-23 22:20:35 -04:00
cmn "github.com/tendermint/tmlibs/common"
2016-11-21 23:42:42 -05:00
)
const (
PubKeyEd25519 = "ed25519"
)
func Ed25519Validator(pubkey []byte, power int64) Validator {
return Validator{
// Address:
PubKey: PubKey{
Type: PubKeyEd25519,
Data: pubkey,
},
Power: power,
}
}
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
var _ sort.Interface = (Validators)(nil)
// All these methods for Validators:
// Len, Less and Swap
// are for Validators to implement sort.Interface
// which will be used by the sort package.
// See Issue https://github.com/tendermint/abci/issues/212
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 {
2018-05-23 22:20:35 -04:00
return bytes.Compare(v[i].PubKey.Data, v[j].PubKey.Data) <= 0
2016-11-21 23:42:42 -05:00
}
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 {
2018-05-23 22:20:35 -04:00
s[i] = validatorPretty{
Address: v.Address,
PubKey: v.PubKey.Data,
Power: v.Power,
}
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 {
2018-05-23 22:20:35 -04:00
Address cmn.HexBytes `json:"address"`
PubKey []byte `json:"pub_key"`
Power int64 `json:"power"`
2017-12-01 00:51:20 -05:00
}