diff --git a/README.md b/README.md index c581f5752..6ad08e32c 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ through the network. ## Lightning Network Specification Compliance `lnd` _fully_ conforms to the [Lightning Network specification (BOLTs)](https://github.com/lightningnetwork/lightning-rfc). BOLT stands for: -Basic of Lightning Technologies. The specifications are currently being drafted +Basis of Lightning Technology. The specifications are currently being drafted by several groups of implementers based around the world including the developers of `lnd`. The set of specification documents as well as our implementation of the specification are still a work-in-progress. With that diff --git a/server.go b/server.go index 4a885b7dc..0f13e7e28 100644 --- a/server.go +++ b/server.go @@ -1540,6 +1540,7 @@ func (s *server) initTorController() error { Color: newNodeAnn.RGBColor, AuthSigBytes: newNodeAnn.Signature.ToSignatureBytes(), } + copy(selfNode.PubKeyBytes[:], s.identityPriv.PubKey().SerializeCompressed()) if err := s.chanDB.ChannelGraph().SetSourceNode(selfNode); err != nil { return fmt.Errorf("can't set self node: %v", err) }