File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
1
Rust-Lightning, not Rusty's Lightning!
2
2
3
- Currently somewhere near 5% towards usable, published to see if there is any
4
- real interest from folks in either contributing to or using a lightning rust
5
- library.
3
+ Currently somewhere near 10% towards usable, published to see if there is any
4
+ real interest from folks in using a lightning rust library.
6
5
7
6
The goal is to provide a full-featured but also incredibly flexible lightning
8
7
implementation, allowing the user to decide how they wish to use it. With that
Original file line number Diff line number Diff line change @@ -40,11 +40,11 @@ mod tests {
40
40
41
41
use bitcoin:: blockdata:: script:: { Script , Builder } ;
42
42
use bitcoin:: blockdata:: transaction:: TxOut ;
43
- use bitcoin:: util:: hash:: Sha256dHash ;
43
+ use bitcoin:: util:: hash:: Sha256dHash ;
44
44
45
45
use hex:: decode;
46
46
47
- #[ test]
47
+ #[ test]
48
48
fn sort_output_by_value ( ) {
49
49
let txout1 = TxOut {
50
50
value : 100 ,
@@ -67,7 +67,7 @@ mod tests {
67
67
) ;
68
68
}
69
69
70
- #[ test]
70
+ #[ test]
71
71
fn sort_output_by_script_pubkey ( ) {
72
72
let txout1 = TxOut {
73
73
value : 100 ,
@@ -90,7 +90,7 @@ mod tests {
90
90
) ;
91
91
}
92
92
93
- #[ test]
93
+ #[ test]
94
94
fn sort_output_by_bip_test ( ) {
95
95
let txout1 = TxOut {
96
96
value : 100000000 ,
@@ -136,7 +136,7 @@ mod tests {
136
136
137
137
assert_eq!( outputs, expected) ;
138
138
}
139
- ) *
139
+ ) *
140
140
}
141
141
}
142
142
You can’t perform that action at this time.
0 commit comments