@@ -52,19 +52,16 @@ impl<const N: usize> FromBase32 for [u8; N] {
52
52
fn from_base32 ( data : & [ Fe32 ] ) -> Result < Self , Self :: Err > {
53
53
let mut res_arr = [ 0 ; N ] ;
54
54
// Do in a for loop to place in the array directly, not using `collect`
55
- let mut idx = 0 ;
55
+ let mut count = 0 ;
56
56
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 ;
59
59
}
60
- res_arr[ idx] = elem;
61
- idx += 1 ;
60
+ count += 1 ;
62
61
}
63
- if idx != N {
62
+ if count != N {
64
63
return Err ( Bolt11ParseError :: InvalidSliceLength (
65
- data. len ( ) ,
66
- ( N * 8 + 4 ) / 5 ,
67
- "<[u8; N]>" ,
64
+ count, N , "<[u8; N]>" ,
68
65
) ) ;
69
66
}
70
67
Ok ( res_arr)
@@ -79,7 +76,7 @@ impl FromBase32 for PaymentSecret {
79
76
return Err ( Bolt11ParseError :: InvalidSliceLength (
80
77
field_data. len ( ) ,
81
78
52 ,
82
- "payment secret " ,
79
+ "PaymentSecret " ,
83
80
) ) ;
84
81
}
85
82
let data_bytes = <[ u8 ; 32 ] >:: from_base32 ( field_data) ?;
@@ -383,10 +380,11 @@ impl FromStr for SignedRawBolt11Invoice {
383
380
fn from_str ( s : & str ) -> Result < Self , Self :: Err > {
384
381
let parsed = CheckedHrpstring :: new :: < Bech32 > ( s) ?;
385
382
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 ( ) ;
388
386
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)
390
388
if data. len ( ) < SIGNATURE_LEN5 {
391
389
return Err ( Bolt11ParseError :: TooShortDataPart ) ;
392
390
}
@@ -467,7 +465,7 @@ impl FromBase32 for PositiveTimestamp {
467
465
return Err ( Bolt11ParseError :: InvalidSliceLength (
468
466
b32. len ( ) ,
469
467
7 ,
470
- "timestamp " ,
468
+ "PositiveTimestamp " ,
471
469
) ) ;
472
470
}
473
471
let timestamp: u64 = parse_u64_be ( b32)
@@ -486,7 +484,7 @@ impl FromBase32 for Bolt11InvoiceSignature {
486
484
return Err ( Bolt11ParseError :: InvalidSliceLength (
487
485
signature. len ( ) ,
488
486
104 ,
489
- "signature " ,
487
+ "Bolt11InvoiceSignature " ,
490
488
) ) ;
491
489
}
492
490
let recoverable_signature_bytes = <[ u8 ; 65 ] >:: from_base32 ( signature) ?;
0 commit comments