aboutsummaryrefslogtreecommitdiffstats
path: root/dex/handler.go
diff options
context:
space:
mode:
Diffstat (limited to 'dex/handler.go')
-rw-r--r--dex/handler.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/dex/handler.go b/dex/handler.go
index ce6a0366c..87f8b6b1d 100644
--- a/dex/handler.go
+++ b/dex/handler.go
@@ -886,6 +886,8 @@ func (pm *ProtocolManager) SendDKGPrivateShare(
id := string(pub.Bytes()[1:])
if p := pm.peers.Peer(id); p != nil {
p.AsyncSendDKGPrivateShare(privateShare)
+ } else {
+ log.Error("Failed to send DKG private share", "publicKey", id)
}
}