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
One of the main traits in this lib is `MiniscriptKey`, we can shorten
this to `Key` with no loss of meaning. This makes the whole codebase
more terse. Terse code, if clear, is easier to read because there is
less clutter. Also terseness assists the formatter and can reduce lines
of code.
This patch is the result of running
`s/MiniscriptKey/Key/g` on all source files.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
- Fixed miniscript type system bug. This is a security vulnerability and users are strongly encouraged to upgrade.
4
4
See this (link)[https://github.com/rust-bitcoin/rust-miniscript/pull/349/commits/db97c39afa4053c2c3917f04392f6e24964b3972] for details.
5
5
- Support for `tr` descriptors with miniscript leaves and multi_a fragment
6
-
- Changes to MiniscriptKey and ToPublicKey traits for x-only keys support
6
+
- Changes to Key and ToPublicKey traits for x-only keys support
7
7
- Add `PsbtExt` trait for psbt operations
8
8
-`Psbt::update_desc` adds information from a descriptor to a psbt. This figures
9
9
out the type of the descriptor and adds corresponding redeem script/witness script
@@ -33,7 +33,7 @@ See this (link)[https://github.com/rust-bitcoin/rust-miniscript/pull/349/commits
33
33
- Remove `PkCtx` from the API
34
34
- Move descriptors into their own types, with an enum containing all of them
35
35
- Move descriptor functionality into a trait
36
-
- Remove `FromStr` bound from `MiniscriptKey`and `MiniscriptKey::Hash`
36
+
- Remove `FromStr` bound from `Key`and `Key::Hash`
37
37
- Various `DescriptorPublicKey` improvements
38
38
- Allow hardened paths in `DescriptorPublicKey`, remove direct `ToPublicKey` implementation
0 commit comments