9
9
10
10
//! Various wrapper types (most around 32-byte arrays) for use in lightning.
11
11
12
+ use super :: channel_keys:: RevocationBasepoint ;
13
+
12
14
use crate :: chain:: transaction:: OutPoint ;
13
15
use crate :: io;
14
16
use crate :: ln:: msgs:: DecodeError ;
15
17
use crate :: sign:: EntropySource ;
16
18
use crate :: util:: ser:: { Readable , Writeable , Writer } ;
17
- use super :: channel_keys:: RevocationBasepoint ;
18
19
19
20
#[ allow( unused_imports) ]
20
21
use crate :: prelude:: * ;
21
22
22
- use bitcoin:: hashes:: {
23
- Hash as _,
24
- HashEngine as _,
25
- sha256:: Hash as Sha256 ,
26
- } ;
23
+ use bitcoin:: hashes:: { sha256:: Hash as Sha256 , Hash as _, HashEngine as _} ;
27
24
use bitcoin:: hex:: display:: impl_fmt_traits;
25
+
28
26
use core:: borrow:: Borrow ;
29
27
use core:: ops:: Deref ;
30
28
@@ -56,7 +54,9 @@ impl ChannelId {
56
54
57
55
/// Create a _temporary_ channel ID randomly, based on an entropy source.
58
56
pub fn temporary_from_entropy_source < ES : Deref > ( entropy_source : & ES ) -> Self
59
- where ES :: Target : EntropySource {
57
+ where
58
+ ES :: Target : EntropySource ,
59
+ {
60
60
Self ( entropy_source. get_secure_random_bytes ( ) )
61
61
}
62
62
@@ -80,16 +80,11 @@ impl ChannelId {
80
80
/// revocation basepoint and hashing the result. The basepoints will be concatenated in increasing
81
81
/// sorted order.
82
82
pub fn v2_from_revocation_basepoints (
83
- ours : & RevocationBasepoint ,
84
- theirs : & RevocationBasepoint ,
83
+ ours : & RevocationBasepoint , theirs : & RevocationBasepoint ,
85
84
) -> Self {
86
85
let ours = ours. 0 . serialize ( ) ;
87
86
let theirs = theirs. 0 . serialize ( ) ;
88
- let ( lesser, greater) = if ours < theirs {
89
- ( ours, theirs)
90
- } else {
91
- ( theirs, ours)
92
- } ;
87
+ let ( lesser, greater) = if ours < theirs { ( ours, theirs) } else { ( theirs, ours) } ;
93
88
let mut engine = Sha256 :: engine ( ) ;
94
89
engine. input ( & lesser[ ..] ) ;
95
90
engine. input ( & greater[ ..] ) ;
@@ -98,8 +93,11 @@ impl ChannelId {
98
93
99
94
/// Create temporary _v2_ channel ID by concatenating a zeroed out basepoint with the holder
100
95
/// revocation basepoint and hashing the result.
101
- pub fn temporary_v2_from_revocation_basepoint ( our_revocation_basepoint : & RevocationBasepoint ) -> Self {
102
- Self ( Sha256 :: hash ( & [ [ 0u8 ; 33 ] , our_revocation_basepoint. 0 . serialize ( ) ] . concat ( ) ) . to_byte_array ( ) )
96
+ pub fn temporary_v2_from_revocation_basepoint (
97
+ our_revocation_basepoint : & RevocationBasepoint ,
98
+ ) -> Self {
99
+ let our_revocation_point_bytes = our_revocation_basepoint. 0 . serialize ( ) ;
100
+ Self ( Sha256 :: hash ( & [ [ 0u8 ; 33 ] , our_revocation_point_bytes] . concat ( ) ) . to_byte_array ( ) )
103
101
}
104
102
}
105
103
@@ -130,20 +128,17 @@ impl_fmt_traits! {
130
128
131
129
#[ cfg( test) ]
132
130
mod tests {
133
- use bitcoin:: hashes:: {
134
- Hash as _,
135
- HashEngine as _,
136
- sha256:: Hash as Sha256 ,
137
- } ;
138
- use bitcoin:: secp256k1:: PublicKey ;
131
+ use bitcoin:: hashes:: { sha256:: Hash as Sha256 , Hash as _, HashEngine as _} ;
139
132
use bitcoin:: hex:: DisplayHex ;
133
+ use bitcoin:: secp256k1:: PublicKey ;
140
134
141
135
use super :: ChannelId ;
136
+
137
+ use crate :: io;
142
138
use crate :: ln:: channel_keys:: RevocationBasepoint ;
139
+ use crate :: prelude:: * ;
143
140
use crate :: util:: ser:: { Readable , Writeable } ;
144
141
use crate :: util:: test_utils;
145
- use crate :: prelude:: * ;
146
- use crate :: io;
147
142
148
143
use core:: str:: FromStr ;
149
144
0 commit comments