-
Notifications
You must be signed in to change notification settings - Fork 5
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 support for redpallas #64
Conversation
024050e
to
577f542
Compare
participant/src/round2.rs
Outdated
|
||
input.read_line(&mut json).unwrap(); | ||
|
||
// TODO: fix error |
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.
Does this need to be fixed as part of this story?
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.
thanks! forgot about it, fixed in 1e17731
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.
It looks good. Just one question.
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 good
Depends on #62
This adds support for RedPallas using the
redpallas
feature (e.g.cargo run --bin dkg --features redpallas
)Features should be additive and this goes against that, but since we have only binaries and not libraries, it seems fine.
When
redpallas
is activate, support for rerandomized FROST is also enabled. Currently the randomizer is always read (even though ideally it should be generated by the coordinator) because this is currently required by the demo.