Skip to content

Commit 7377e22

Browse files
committed
bug: still stend messages even if done
1 parent 0dd757f commit 7377e22

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

keygen.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -316,10 +316,6 @@ func transitionToStep2(state *DKGState, info *DKGCatchUpInfo, ownIndex uint16, i
316316

317317
state.Step = 2
318318

319-
if len(state.Shares) == len(state.Commitments) {
320-
return true, computeOutputs(state, indices, ownIndex), nil, nil
321-
}
322-
323319
if info != nil {
324320
info.IndexSubset = make([]uint16, 0, len(state.Commitments))
325321
for index := range state.Commitments {
@@ -329,6 +325,10 @@ func transitionToStep2(state *DKGState, info *DKGCatchUpInfo, ownIndex uint16, i
329325
sort.Slice(info.IndexSubset, func(i, j int) bool { return info.IndexSubset[i] < info.IndexSubset[j] })
330326
}
331327

328+
if len(state.Shares) == len(state.Commitments) {
329+
return true, computeOutputs(state, indices, ownIndex), shareMessages, nil
330+
}
331+
332332
return false, DKGOutput{}, shareMessages, nil
333333
}
334334

keygen_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ var _ = Describe("DKG", func() {
7474
checkOutputs(outputs, n, t, indices)
7575
})
7676

77-
FIt("should allow a node to catch up if it was offline", func() {
77+
It("should allow a node to catch up if it was offline", func() {
7878
n := 10
7979
t := 5
8080

0 commit comments

Comments
 (0)