We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 883132e commit 959546bCopy full SHA for 959546b
examples/big.rs
@@ -37,6 +37,11 @@ fn main() {
37
println!("{:?}", h.lift());
38
println!("{:?}", h.script_pubkey());
39
println!("{:?}", h.address(bitcoin::Network::Bitcoin));
40
+
41
+ let psbt: bitcoin::Psbt = i.parse().unwrap();
42
+ let psbt = psbt.finalize(&secp).unwrap();
43
+ let tx = psbt.extract_tx().unwrap();
44
+ println!("{:?}", tx);
45
}
46
47
fn use_descriptor<K: MiniscriptKey>(d: Descriptor<K>) {
0 commit comments