Generate the local node directly in main.go
Instead of using a trivial function, simply generate the local node from main.go, manually assign fields from the nodeMeta struct.
This commit is contained in:
@ -26,15 +26,7 @@ func (n *Node) String() string {
|
||||
return n.Addr.String()
|
||||
}
|
||||
|
||||
func MakeLocalNode(overlayAddr net.IPNet, pubKey string) Node {
|
||||
return Node{
|
||||
nodeMeta: nodeMeta{
|
||||
OverlayAddr: overlayAddr,
|
||||
PubKey: pubKey,
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
// Encode the node metadata to bytes, in a deterministic reversible way
|
||||
func (n *Node) Encode(limit int) ([]byte, error) {
|
||||
buf := &bytes.Buffer{}
|
||||
if err := gob.NewEncoder(buf).Encode(n.nodeMeta); err != nil {
|
||||
|
Reference in New Issue
Block a user