Skip to content

Commit 89a6cec

Browse files
committed
Review, fmt fixes
1 parent 1a69ccc commit 89a6cec

File tree

3 files changed

+23
-24
lines changed

3 files changed

+23
-24
lines changed

lightning-invoice/src/de.rs

+13-15
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,16 @@ impl<const N: usize> FromBase32 for [u8; N] {
5252
fn from_base32(data: &[Fe32]) -> Result<Self, Self::Err> {
5353
let mut res_arr = [0; N];
5454
// Do in a for loop to place in the array directly, not using `collect`
55-
let mut idx = 0;
55+
let mut count = 0;
5656
for elem in data.iter().copied().fes_to_bytes() {
57-
if idx >= N {
58-
break; // too many inputs, stop early, OK
57+
if count < N {
58+
res_arr[count] = elem;
5959
}
60-
res_arr[idx] = elem;
61-
idx += 1;
60+
count += 1;
6261
}
63-
if idx != N {
62+
if count != N {
6463
return Err(Bolt11ParseError::InvalidSliceLength(
65-
data.len(),
66-
(N * 8 + 4) / 5,
67-
"<[u8; N]>",
64+
count, N, "<[u8; N]>",
6865
));
6966
}
7067
Ok(res_arr)
@@ -79,7 +76,7 @@ impl FromBase32 for PaymentSecret {
7976
return Err(Bolt11ParseError::InvalidSliceLength(
8077
field_data.len(),
8178
52,
82-
"payment secret",
79+
"PaymentSecret",
8380
));
8481
}
8582
let data_bytes = <[u8; 32]>::from_base32(field_data)?;
@@ -383,10 +380,11 @@ impl FromStr for SignedRawBolt11Invoice {
383380
fn from_str(s: &str) -> Result<Self, Self::Err> {
384381
let parsed = CheckedHrpstring::new::<Bech32>(s)?;
385382
let hrp = parsed.hrp();
386-
// Access original non-packed 32 byte values (as Fe32s) (iterator type is needed for API hack)
387-
let data: Vec<_> = parsed.fe32_iter::<alloc::boxed::Box<dyn Iterator<Item = u8>>>().collect();
383+
// Access original non-packed 32 byte values (as Fe32s)
384+
// Note: the type argument is needed due to the API peculiarities, but it's not used
385+
let data: Vec<_> = parsed.fe32_iter::<&mut dyn Iterator<Item = u8>>().collect();
388386

389-
const SIGNATURE_LEN5: usize = 104; // 32-bit values, 65 bytes
387+
const SIGNATURE_LEN5: usize = 104; // number of the 5-bit values (equals to 65 bytes)
390388
if data.len() < SIGNATURE_LEN5 {
391389
return Err(Bolt11ParseError::TooShortDataPart);
392390
}
@@ -467,7 +465,7 @@ impl FromBase32 for PositiveTimestamp {
467465
return Err(Bolt11ParseError::InvalidSliceLength(
468466
b32.len(),
469467
7,
470-
"timestamp",
468+
"PositiveTimestamp",
471469
));
472470
}
473471
let timestamp: u64 = parse_u64_be(b32)
@@ -486,7 +484,7 @@ impl FromBase32 for Bolt11InvoiceSignature {
486484
return Err(Bolt11ParseError::InvalidSliceLength(
487485
signature.len(),
488486
104,
489-
"signature",
487+
"Bolt11InvoiceSignature",
490488
));
491489
}
492490
let recoverable_signature_bytes = <[u8; 65]>::from_base32(signature)?;

lightning-invoice/src/test_ser_de.rs

+10-8
Original file line numberDiff line numberDiff line change
@@ -76,16 +76,19 @@ fn array_u8_error_invalid_length() {
7676
.err()
7777
.unwrap()
7878
.to_string(),
79-
"Slice had length 4 instead of 5 for element <[u8; N]>"
79+
"Slice had length 2 instead of 3 for element <[u8; N]>"
8080
);
8181

8282
// input too long
8383
assert_eq!(
8484
<[u8; 3]>::from_base32(
85-
&"pqqqql".to_string().chars().map(|c| Fe32::from_char(c).unwrap()).collect::<Vec<_>>()[..]
85+
&"pqqqqql".to_string().chars().map(|c| Fe32::from_char(c).unwrap()).collect::<Vec<_>>()
86+
[..]
8687
)
87-
.unwrap(),
88-
[8, 0, 0]
88+
.err()
89+
.unwrap()
90+
.to_string(),
91+
"Slice had length 4 instead of 3 for element <[u8; N]>"
8992
);
9093
}
9194

@@ -151,17 +154,16 @@ fn bolt11_invoice_features() {
151154
// To test skipping 0's in deserialization, we have to start with deserialization
152155
assert_eq!(
153156
Bolt11InvoiceFeatures::from_base32(
154-
&"qqqqqry"
155-
.to_string().chars().map(|c| Fe32::from_char(c).unwrap()).collect::<Vec<_>>()[..]
157+
&"qqqqqry".to_string().chars().map(|c| Fe32::from_char(c).unwrap()).collect::<Vec<_>>()
158+
[..]
156159
)
157160
.unwrap()
158161
.le_flags(),
159162
vec![100]
160163
);
161164
assert_eq!(
162165
Bolt11InvoiceFeatures::from_base32(
163-
&"ry"
164-
.to_string().chars().map(|c| Fe32::from_char(c).unwrap()).collect::<Vec<_>>()[..]
166+
&"ry".to_string().chars().map(|c| Fe32::from_char(c).unwrap()).collect::<Vec<_>>()[..]
165167
)
166168
.unwrap()
167169
.le_flags(),

lightning-types/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ _test_utils = []
1717

1818
[dependencies]
1919
bitcoin = { version = "0.32.2", default-features = false }
20-
bech32 = { version = "0.11.0", default-features = false }
2120

2221
[lints]
2322
workspace = true

0 commit comments

Comments
 (0)