Skip to content
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

Merged
merged 4 commits into from
Aug 2, 2024
Merged

Full Bip322 signatures #5

merged 4 commits into from
Aug 2, 2024

Conversation

diehuxx
Copy link

@diehuxx diehuxx commented Jul 24, 2024

No description provided.

@raphjaph
Copy link
Collaborator

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 :)

@diehuxx
Copy link
Author

diehuxx commented Jul 29, 2024

@raphjaph upd8d

Copy link
Collaborator

@raphjaph raphjaph left a 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
Comment on lines 11 to 14
pub use sign::{full_sign, simple_sign};

mod verifier;
pub use verifier::{full_verify, simple_verify};
Copy link
Collaborator

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.

Suggested change
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},
};

@raphjaph raphjaph merged commit 9934172 into rust-bitcoin:master Aug 2, 2024
2 checks passed
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants