-
Notifications
You must be signed in to change notification settings - Fork 72
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
bip32
crate
#670
bip32
crate
#670
Conversation
eb164c8
to
77ca32b
Compare
Initial implementation with secp256k1 derivation support
Codecov Report
@@ Coverage Diff @@
## main #670 +/- ##
==========================================
+ Coverage 46.34% 51.60% +5.25%
==========================================
Files 51 58 +7
Lines 1944 2087 +143
==========================================
+ Hits 901 1077 +176
+ Misses 1043 1010 -33
Continue to review full report at Codecov.
|
/// Derivation paths within a hierarchical keyspace. | ||
#[derive(Clone, PartialEq, Eq, Debug, Default)] | ||
pub struct DerivationPath { | ||
path: Vec<ChildNumber>, |
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.
nit: dervation paths are limited by spec to at most 256 elements, including the m
. This type will allow invalid paths
Initial implementation with
secp256k1
derivation support