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
Copy file name to clipboardexpand all lines: examples/big.rs
+18-7
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
// SPDX-License-Identifier: CC0-1.0
2
-
//! This is not an example and will surely panic if executed, the purpose of this is using the
2
+
//! This is not an example and will surely panic if executed, the purpose of this is using the
3
3
//! compiled binary with tools like `cargo bloat` that cannot work with libraries.
4
4
//!
5
5
//! Ideal properties:
@@ -9,9 +9,17 @@
9
9
//! * Use results so that calls are not stripped out.
10
10
//!
11
11
12
-
use std::{collections::HashMap, str::FromStr};
12
+
use std::collections::HashMap;
13
+
use std::str::FromStr;
14
+
13
15
use bitcoin::{ecdsa,XOnlyPublicKey};
14
-
use miniscript::{descriptor::Wsh, policy::{Concrete,Liftable}, psbt::PsbtExt, translate_hash_fail,DefiniteDescriptorKey,Descriptor,DescriptorPublicKey,MiniscriptKey,TranslatePk,Translator};
0 commit comments