File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 6
6
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7
7
// You may not use this file except in accordance with one or both of these
8
8
// licenses.
9
-
10
9
//! Feature flag definitions for the Lightning protocol according to [BOLT #9].
11
10
//!
12
11
//! Lightning nodes advertise a supported set of operation through feature flags. Features are
59
58
//! - `SCIDPrivacy` - supply channel aliases for routing
60
59
//! (see [BOLT-2](https://github.com/lightning/bolts/blob/master/02-peer-protocol.md) for more information).
61
60
//! - `PaymentMetadata` - include additional data in invoices which is passed to recipients in the
62
- //! onion.
63
- //! (see [BOLT-11](https://github.com/lightning/bolts/blob/master/11-payment-encoding.md) for
64
- //! more).
61
+ //! onion.
62
+ //! (see [BOLT-11](https://github.com/lightning/bolts/blob/master/11-payment-encoding.md) for
63
+ //! more).
65
64
//! - `ZeroConf` - supports accepting HTLCs and using channels prior to funding confirmation
66
- //! (see
67
- //! [BOLT-2](https://github.com/lightning/bolts/blob/master/02-peer-protocol.md#the-channel_ready-message)
68
- //! for more info).
65
+ //! (see
66
+ //! [BOLT-2](https://github.com/lightning/bolts/blob/master/02-peer-protocol.md#the-channel_ready-message)
67
+ //! for more info).
69
68
//! - `Keysend` - send funds to a node without an invoice
70
69
//! (see the [`Keysend` feature assignment proposal](https://github.com/lightning/bolts/issues/605#issuecomment-606679798) for more information).
71
70
//! - `Trampoline` - supports receiving and forwarding Trampoline payments
Original file line number Diff line number Diff line change @@ -1153,7 +1153,7 @@ pub(crate) const MIN_AFFORDABLE_HTLC_COUNT: usize = 4;
1153
1153
///
1154
1154
/// * The expected interval between ticks (1 minute).
1155
1155
/// * The average convergence delay of updates across the network, i.e., ~300 seconds on average
1156
- /// for a node to see an update as seen on `<https://arxiv.org/pdf/2205.12737.pdf>`.
1156
+ /// for a node to see an update as seen on `<https://arxiv.org/pdf/2205.12737.pdf>`.
1157
1157
/// * `EXPIRE_PREV_CONFIG_TICKS` = convergence_delay / tick_interval
1158
1158
pub(crate) const EXPIRE_PREV_CONFIG_TICKS: usize = 5;
1159
1159
You can’t perform that action at this time.
0 commit comments