Skip to content

Commit b92cfe4

Browse files
committed
f lol
1 parent 79d8276 commit b92cfe4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lightning/src/routing/scoring.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -900,8 +900,8 @@ mod approx {
900900
const BITS: u32 = 64;
901901
const HIGHEST_BIT: u32 = BITS - 1;
902902
const LOWER_BITS: u32 = 6;
903-
const LOWER_BITS_BOUND: u64 = 1 << LOWER_BITS;
904-
pub(super) const LOWER_BITMASK: u64 = (1 << LOWER_BITS) - 1;
903+
pub(super) const LOWER_BITS_BOUND: u64 = 1 << LOWER_BITS;
904+
const LOWER_BITMASK: u64 = (1 << LOWER_BITS) - 1;
905905

906906
/// Look-up table for `log10(x) * 2048` where row `i` is used for each `x` having `i` as the
907907
/// most significant bit. The next 4 bits of `x`, if applicable, are used for the second index.

0 commit comments

Comments
 (0)