neoneo-go/pkg/rpc/response/result/validator.go
2020-03-07 18:05:40 +03:00

14 lines
351 B
Go

package result
import (
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
"github.com/nspcc-dev/neo-go/pkg/util"
)
// Validator used for the representation of
// state.Validator on the RPC Server.
type Validator struct {
PublicKey keys.PublicKey `json:"publickey"`
Votes util.Fixed8 `json:"votes"`
Active bool `json:"active"`
}