We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79d8276 commit b92cfe4Copy full SHA for b92cfe4
lightning/src/routing/scoring.rs
@@ -900,8 +900,8 @@ mod approx {
900
const BITS: u32 = 64;
901
const HIGHEST_BIT: u32 = BITS - 1;
902
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;
+ pub(super) const LOWER_BITS_BOUND: u64 = 1 << LOWER_BITS;
+ const LOWER_BITMASK: u64 = (1 << LOWER_BITS) - 1;
905
906
/// Look-up table for `log10(x) * 2048` where row `i` is used for each `x` having `i` as the
907
/// most significant bit. The next 4 bits of `x`, if applicable, are used for the second index.
0 commit comments