diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2019-01-27 14:25:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-27 14:25:42 +0800 |
commit | 29eeeb08cac1b203dca2075d2901779d12be85b7 (patch) | |
tree | c168325036aa5e48165a52b1da248224953f97fe | |
parent | 049c9820e803f0453442d858d2ef36219981bf4c (diff) | |
download | dexon-consensus-29eeeb08cac1b203dca2075d2901779d12be85b7.tar.gz dexon-consensus-29eeeb08cac1b203dca2075d2901779d12be85b7.tar.zst dexon-consensus-29eeeb08cac1b203dca2075d2901779d12be85b7.zip |
core: fix DKG bug (#435)
-rw-r--r-- | core/dkg-tsig-protocol.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/dkg-tsig-protocol.go b/core/dkg-tsig-protocol.go index 02e3ae0..73b8abf 100644 --- a/core/dkg-tsig-protocol.go +++ b/core/dkg-tsig-protocol.go @@ -234,6 +234,7 @@ func (d *dkgProtocol) processNackComplaints(complaints []*typesDKG.Complaint) ( continue } d.recv.ProposeDKGAntiNackComplaint(&typesDKG.PrivateShare{ + ProposerID: d.ID, ReceiverID: complaint.ProposerID, Round: d.round, PrivateShare: *share, |