-
Notifications
You must be signed in to change notification settings - Fork 53
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
Add validation for missing identifier in signing package #452
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #452 +/- ##
==========================================
+ Coverage 72.17% 72.28% +0.11%
==========================================
Files 30 30
Lines 2670 2681 +11
==========================================
+ Hits 1927 1938 +11
Misses 743 743
☔ View full report in Codecov by Sentry. |
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.
Some comments but everything else looks great, love the test
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.
Looks great!
Out of curiosity I measured performance and indeed we have a drop as expected, which gets diluted with more signers since it's a fixed amount of additional computation:
FROST Signing ristretto255/Round 2/2
time: [143.11 µs 143.26 µs 143.40 µs]
change: [+48.619% +48.846% +49.075%] (p = 0.00 < 0.05)
Performance has regressed.
FROST Signing ristretto255/Round 2/7
time: [225.57 µs 225.72 µs 225.88 µs]
change: [+25.906% +27.105% +28.724%] (p = 0.00 < 0.05)
Performance has regressed.
FROST Signing ristretto255/Round 2/67
time: [1.2433 ms 1.2444 ms 1.2454 ms]
change: [+1.1933% +1.6641% +2.0133%] (p = 0.00 < 0.05)
Performance has regressed.
I'll create an issue to improve this later. Created #454
Co-authored-by: Conrado Gouvea <[email protected]>
This closes #442