forked from FairgateLabs/rust-bitcoin-script-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinteractive.rs
38 lines (34 loc) · 847 Bytes
/
interactive.rs
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
use bitcoin_script_stack::stack::StackTracker;
#[cfg(feature = "interactive")]
use bitcoin_script_stack::interactive::interactive;
#[allow(dead_code)]
fn example(error: bool) -> StackTracker {
let mut stack = StackTracker::new();
stack.number(1);
stack.number(10);
stack.number(5);
stack.number(3);
stack.number(3);
if error {
stack.number(5);
} else {
stack.number(3);
}
stack.op_equalverify();
stack.op_add();
stack.to_altstack();
stack.to_altstack();
stack.from_altstack();
stack.from_altstack();
stack.op_2drop();
stack
}
fn main() {
#[cfg(feature = "interactive")]
{
interactive(&example(false));
interactive(&example(true));
}
#[cfg(not(feature = "interactive"))]
println!("Executed with --features interactive");
}