@@ -156,18 +156,17 @@ pub struct Config {
156156 /// **Note**: We will only allow opening and accepting public channels if the `node_alias` and the
157157 /// `listening_addresses` are set.
158158 pub node_alias : Option < NodeAlias > ,
159- /// A list of peers that we trust. If a peer on this list opens a channel to us, we will
160- /// forward their HTLCs before any confirmations of the funding transaction (zero-conf), and
161- /// allow them to spend their entire balance (zero-reserve). If we open a channel to a peer
162- /// on this list, we will allow them to spend their entire channel balance (note that for
163- /// channels *we* open, the decision of whether to accept HTLC forwards with no
164- /// confirmations of the funding transaction is *the peer's* decision).
165- ///
166- /// **Note:** Allowing payments via zero-confirmation channels is potentially insecure if
167- /// the funding transaction never gets confirmed on-chain. Zero-reserve channels
168- /// allow the counterparty to make cheating attempts with no financial penalty.
169- /// Zero-confirmation, and zero-reserve channels should therefore only be accepted from and
170- /// opened to trusted peers.
159+ /// A list of peers that we trust; these are peers that you've had some interaction with
160+ /// out-of-band before clearing them to be on this list.
161+ ///
162+ /// If a trusted peer opens a channel to us, we will forward their HTLCs before any
163+ /// confirmations of the funding transaction (zero-conf), and allow them to spend their
164+ /// entire balance (zero-reserve).
165+ ///
166+ /// **Note:** Allowing payments via zero-confirmation channels is insecure if the funding
167+ /// transaction never gets confirmed on-chain. Zero-reserve channels allow the peer to try
168+ /// to steal your funds with no financial penalty. Zero-confirmation, and zero-reserve
169+ /// channels should therefore only be accepted from trusted peers.
171170 pub trusted_peers_0conf_0reserve : Vec < PublicKey > ,
172171 /// The liquidity factor by which we filter the outgoing channels used for sending probes.
173172 ///
0 commit comments