Skip to content

Commit

Permalink
fix audit issue 5.2 Missing Signature Check (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelkrolevets authored Nov 7, 2024
1 parent 859e050 commit 581fb7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/initiator/initiator.go
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ func (c *Initiator) ReshareMessageFlowHandling(id [24]byte, signedReshare *wire.
for id := range dkgResult {
c.Logger.Info("DKG Reshare results", zap.Any("id", id))
}
err = verifyMessageSignatures(reqID, kyberMsgs, c.VerifyMessageSignature)
err = verifyMessageSignatures(reqID, dkgResult, c.VerifyMessageSignature)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 581fb7f

Please sign in to comment.