From 6c731c4efc9827115f6404c7ebcdf0c1a5d496c1 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Sun, 16 Feb 2020 23:45:11 +0000 Subject: [PATCH] Fix comment on LocalAddr --- src/yggdrasil/conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yggdrasil/conn.go b/src/yggdrasil/conn.go index 37049c7..eef5768 100644 --- a/src/yggdrasil/conn.go +++ b/src/yggdrasil/conn.go @@ -351,7 +351,7 @@ func (c *Conn) Close() (err error) { } // LocalAddr returns the complete public key of the local side of the -// connection. This is always going to return your own node's node ID. +// connection. This is always going to return your own node's public key. func (c *Conn) LocalAddr() net.Addr { return &c.core.boxPub }