mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 14:22:16 +00:00
Signatures are now []byte, which saves on the number of bytes after amino encoding (squash this) address Ismail's comment
36 lines
477 B
Go
36 lines
477 B
Go
package node
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/tendermint/tendermint/crypto"
|
|
)
|
|
|
|
type NodeID struct {
|
|
Name string
|
|
PubKey crypto.PubKey
|
|
}
|
|
|
|
type PrivNodeID struct {
|
|
NodeID
|
|
PrivKey crypto.PrivKey
|
|
}
|
|
|
|
type NodeGreeting struct {
|
|
NodeID
|
|
Version string
|
|
ChainID string
|
|
Message string
|
|
Time time.Time
|
|
}
|
|
|
|
type SignedNodeGreeting struct {
|
|
NodeGreeting
|
|
Signature []byte
|
|
}
|
|
|
|
func (pnid *PrivNodeID) SignGreeting() *SignedNodeGreeting {
|
|
//greeting := NodeGreeting{}
|
|
return nil
|
|
}
|