forked from ynohtna92/ord-litecoin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathepochs.rs
46 lines (45 loc) Β· 1.24 KB
/
epochs.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
39
40
41
42
43
44
45
46
use {super::*, ord::subcommand::epochs::Output, ord::Sat};
#[test]
fn empty() {
assert_eq!(
CommandBuilder::new("epochs").run_and_deserialize_output::<Output>(),
Output {
starting_sats: vec![
Sat(0),
Sat(4200000000000000),
Sat(6300000000000000),
Sat(7350000000000000),
Sat(7875000000000000),
Sat(8137500000000000),
Sat(8268750000000000),
Sat(8334375000000000),
Sat(8367187500000000),
Sat(8383593750000000),
Sat(8391796875000000),
Sat(8395898437080000),
Sat(8397949218120000),
Sat(8398974608640000),
Sat(8399487303480000),
Sat(8399743650480000),
Sat(8399871823560000),
Sat(8399935909680000),
Sat(8399967952320000),
Sat(8399983973640000),
Sat(8399991983880000),
Sat(8399995989000000),
Sat(8399997991560000),
Sat(8399998992840000),
Sat(8399999493480000),
Sat(8399999743800000),
Sat(8399999868960000),
Sat(8399999931120000),
Sat(8399999962200000),
Sat(8399999977320000),
Sat(8399999984880000),
Sat(8399999988240000),
Sat(8399999989920000),
Sat(8399999990760000)
]
}
);
}