diff options
Diffstat (limited to 'device/peer.go')
-rw-r--r-- | device/peer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/device/peer.go b/device/peer.go index 8266dac..0e7b669 100644 --- a/device/peer.go +++ b/device/peer.go @@ -92,7 +92,7 @@ func (device *Device) NewPeer(pk NoisePublicKey) (*Peer, error) { // pre-compute DH handshake := &peer.handshake handshake.mutex.Lock() - handshake.precomputedStaticStatic = device.staticIdentity.privateKey.sharedSecret(pk) + handshake.precomputedStaticStatic, _ = device.staticIdentity.privateKey.sharedSecret(pk) handshake.remoteStatic = pk handshake.mutex.Unlock() |