-
Notifications
You must be signed in to change notification settings - Fork 72
Fixed typos #579
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed typos #579
Changes from all commits
8c192fc
56d0b1b
0995c74
442a1df
d694a42
368a6ef
79b5938
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,7 +101,7 @@ func (s *Signing) handleSigning(sid tss.SigningID) { | |
} | ||
|
||
// Get private keys of DE | ||
privDE, err := s.context.Store.GetDE(types.DE{ | ||
provide, err := s.context.Store.GetDE(types.DE{ | ||
PubD: assignedMember.PubD, | ||
PubE: assignedMember.PubE, | ||
}) | ||
|
@@ -111,7 +111,7 @@ func (s *Signing) handleSigning(sid tss.SigningID) { | |
} | ||
|
||
// Compute own private nonce | ||
privNonce, err := tss.ComputeOwnPrivNonce(privDE.PrivD, privDE.PrivE, assignedMember.BindingFactor) | ||
privNonce, err := tss.ComputeOwnPrivNonce(provide.PrivD, provide.PrivE, assignedMember.BindingFactor) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. keep them as is, (they are privateDE) |
||
if err != nil { | ||
logger.Error(":cold_sweat: Failed to compute own private nonce: %s", err) | ||
return | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
given