We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ec06b0a + b5c733d commit 30c5ee4Copy full SHA for 30c5ee4
ecdsa/keygen/local_party_test.go
@@ -249,10 +249,7 @@ keygen:
249
u := new(big.Int)
250
for j, Pj := range parties {
251
pShares := make(vss.Shares, 0)
252
- for j2, P := range parties {
253
- if j2 == j {
254
- continue
255
- }
+ for _, P := range parties {
256
vssMsgs := P.temp.kgRound2Message1s
257
share := vssMsgs[j].Content().(*KGRound2Message1).Share
258
shareStruct := &vss.Share{
ecdsa/keygen/round_2.go
@@ -105,7 +105,6 @@ func (round *round2) Start() *tss.Error {
105
round.temp.kgRound2Message1s[j] = r2msg1
106
continue
107
}
108
- round.temp.kgRound2Message1s[i] = r2msg1
109
round.out <- r2msg1
110
111
0 commit comments