You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge #20: feat: update signer impl for XOnlyPubkey
fe83b69 feat: update signer impl for XOnlyPubkey (chaitika)
Pull request description:
**Description**
Updating signer implemention for XOnlyPublicKey key request
**Fixes** #19
**All Submissions:**
- [X] I've signed all my commits
- [X] I followed the conventional commit guidelines
- [X] I ran cargo +nigthly fmt before committing
**New Features:**
- [X] I've added tests for the new feature
- [ ] I've added docs for the new feature
ACKs for top commit:
ValuedMammal:
ACK fe83b69
Tree-SHA512: dc5f84651ae4a6b822fd9e7ae26c258c98fa30d89429aab408332256f8d1da46e7c77c6766043f2aefb21819d42f867024661f138a304271261acac20731f955
let desc_sk = DescriptorSecretKey::from_str("[d34db33f/84h/1h/0h]tprv8ZgxMBicQKsPd3EupYiPRhaMooHKUHJxNsTfYuScep13go8QFfHdtkG9nRkFGb7busX4isf6X9dURGCoKgitaApQ6MupRhZMcELAxTBRJgS/*")?;
181
+
let desc_xkey = match desc_sk {
182
+
DescriptorSecretKey::XPrv(k) => k,
183
+
_ => panic!(),
184
+
};
185
+
186
+
let(fp, _) = desc_xkey.origin.clone().unwrap();
187
+
let path = DerivationPath::from_str("84h/1h/0h/7")?;
0 commit comments