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
This, and the next commit, are not organized in any way except that I
did a new commit partway to try to make review a bit easier. There
were too many lints for me to split them all up and do them in a nice
PR.
This changes `OrdF64::partial_cmp` to be consistent with `OrdF64::cmp`
which is a bugfix and an observable behavior change (but not an easy
one to observe). All other changes are just syntax stuff.
Copy file name to clipboardExpand all lines: examples/psbt_sign_finalize.rs
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ fn main() {
18
18
let secp256k1 = secp256k1::Secp256k1::new();
19
19
20
20
let s = "wsh(t:or_c(pk(027a3565454fe1b749bccaef22aff72843a9c3efefd7b16ac54537a0c23f0ec0de),v:thresh(1,pkh(032d672a1a91cc39d154d366cd231983661b0785c7f27bc338447565844f4a6813),a:pkh(03417129311ed34c242c012cd0a3e0b9bca0065f742d0dfb63c78083ea6a02d4d9),a:pkh(025a687659658baeabdfc415164528065be7bcaade19342241941e556557f01e28))))#7hut9ukn";
21
-
let bridge_descriptor = Descriptor::from_str(&s).unwrap();
21
+
let bridge_descriptor = Descriptor::from_str(s).unwrap();
0 commit comments