mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-25 10:41:41 +00:00
Fix errors except for es missing
This commit is contained in:
@ -10,6 +10,13 @@ type Info struct {
|
||||
PubKey crypto.PubKey `json:"pubkey"`
|
||||
}
|
||||
|
||||
func info(name string, privKey crypto.PrivKey) Info {
|
||||
return Info{
|
||||
Name: name,
|
||||
PubKey: privKey.PubKey(),
|
||||
}
|
||||
}
|
||||
|
||||
// Keybase allows simple CRUD on a keystore, as an aid to signing
|
||||
type Keybase interface {
|
||||
// Sign some bytes
|
||||
|
Reference in New Issue
Block a user