tendermint/abci/types/pubkey.go
Zach Ramsay 44dad6d70b Revert "detele everything"
This reverts commit d02c5d1e30c569ff5f785f2b7d80b875cf2e9977.
2018-07-10 11:22:25 -04:00

17 lines
233 B
Go

package types
const (
PubKeyEd25519 = "ed25519"
)
func Ed25519Validator(pubkey []byte, power int64) Validator {
return Validator{
// Address:
PubKey: PubKey{
Type: PubKeyEd25519,
Data: pubkey,
},
Power: power,
}
}