package state
import (
"math/big"
"git.marketally.com/tutus-one/tutus-chain/pkg/crypto/keys"
)
// Validator holds the state of a validator (its key and votes balance).
type Validator struct {
Key *keys.PublicKey
Votes *big.Int
}