aboutsummaryrefslogtreecommitdiffstats
path: root/dex/handler.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-10-22 15:13:25 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:27:16 +0800
commit2a38e14fa33bebd002451561f3fc618cc8e4fb61 (patch)
treef7b3637ab1578c513b774fe9a7d55c39aafc363a /dex/handler.go
parentc690ad54f5a872728d4476ddb891892a5f93aec0 (diff)
downloadgo-tangerine-2a38e14fa33bebd002451561f3fc618cc8e4fb61.tar
go-tangerine-2a38e14fa33bebd002451561f3fc618cc8e4fb61.tar.gz
go-tangerine-2a38e14fa33bebd002451561f3fc618cc8e4fb61.tar.bz2
go-tangerine-2a38e14fa33bebd002451561f3fc618cc8e4fb61.tar.lz
go-tangerine-2a38e14fa33bebd002451561f3fc618cc8e4fb61.tar.xz
go-tangerine-2a38e14fa33bebd002451561f3fc618cc8e4fb61.tar.zst
go-tangerine-2a38e14fa33bebd002451561f3fc618cc8e4fb61.zip
dex: misc fixes
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)
}
}