Skip to content

Commit 892e710

Browse files
authored
fix: use strict-weak ordering for message to sign (#63)
1 parent de5f121 commit 892e710

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tss/keysign.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ func (t *Server) KeySign(req keysign.Request) (keysign.Response, error) {
302302
return false
303303
}
304304

305-
return ma.Cmp(mb) >= 0
305+
return ma.Cmp(mb) > 0
306306
})
307307

308308
threshold, err := conversion.GetThreshold(len(localStateItem.ParticipantKeys))

0 commit comments

Comments
 (0)