1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
crate::ix!();
pub fn parse_script(s: &String) -> Script {
todo!();
}
pub fn script_to_asm_str(
script: &Script,
attempt_sighash_decode: Option<bool>) -> String {
let attempt_sighash_decode: bool = attempt_sighash_decode.unwrap_or(false);
todo!();
}
pub fn format_script(script: &Script) -> String {
todo!();
}
pub fn script_pub_key_to_univ(
script_pub_key: &Script,
out: &mut UniValue,
include_hex: bool,
include_address: Option<bool>) {
let include_address: bool = include_address.unwrap_or(true);
todo!();
}
pub fn script_to_univ(
script: &Script,
out: &mut UniValue) {
todo!();
}