mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 23:08:36 +01:00
Clarify some scoring documentation by removing extraneous info
This commit is contained in:
parent
3dffe54258
commit
c74a581127
1 changed files with 6 additions and 0 deletions
|
@ -1604,8 +1604,14 @@ mod bucketed_history {
|
|||
|
||||
impl_writeable_tlv_based!(HistoricalBucketRangeTracker, { (0, buckets, required) });
|
||||
|
||||
/// A set of buckets representing the history of where we've seen the minimum- and maximum-
|
||||
/// liquidity bounds for a given channel.
|
||||
pub(super) struct HistoricalMinMaxBuckets<D: Deref<Target = HistoricalBucketRangeTracker>> {
|
||||
/// Buckets tracking where and how often we've seen the minimum liquidity bound for a
|
||||
/// channel.
|
||||
pub(super) min_liquidity_offset_history: D,
|
||||
/// Buckets tracking where and how often we've seen the maximum liquidity bound for a
|
||||
/// channel.
|
||||
pub(super) max_liquidity_offset_history: D,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue