-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Full Bip322 signatures #5
Conversation
I just merged #6, so that we both have consistent formatting across our editors. Could you resolve the conflicts and fix the formatting? Then I can have a look at this properly :) |
@raphjaph upd8d |
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.
LGTM
just fixed some small nits
src/lib.rs
Outdated
pub use sign::{full_sign, simple_sign}; | ||
|
||
mod verifier; | ||
pub use verifier::{full_verify, simple_verify}; |
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.
I prefer having the pub use combined and the modules underneath each other.
pub use sign::{full_sign, simple_sign}; | |
mod verifier; | |
pub use verifier::{full_verify, simple_verify}; | |
mod verifier; | |
pub use { | |
sign::{full_sign, simple_sign}, | |
verifier::{full_verify, simple_verify}, | |
}; |
No description provided.