@@ -110,7 +110,7 @@ across many distinct blockchains as well as have channels within multiple
110110blockchains opened to the same peer (if it supports the target chains).
111111
112112The ` temporary_channel_id ` is used to identify this channel until the
113- funding transaction is established.
113+ funding transaction is established.
114114
115115` funding_satoshis ` is the amount the sender is putting into the
116116channel. ` push_msat ` is an amount of initial funds that the sender is
@@ -119,21 +119,21 @@ threshold below which outputs should not be generated for this node's
119119commitment or HTLC transactions (i.e. HTLCs below this amount plus
120120HTLC transaction fees are not enforceable on-chain). This reflects the
121121reality that tiny outputs are not considered standard transactions and
122- will not propagate through the Bitcoin network. ` channel_reserve_satoshis `
122+ will not propagate through the Bitcoin network. ` channel_reserve_satoshis `
123123is the minimum amount that the other node is to keep as a direct
124124payment. ` htlc_minimum_msat ` indicates the smallest value HTLC this
125125node will accept.
126126
127127` max_htlc_value_in_flight_msat ` is a cap on total value of outstanding
128128HTLCs, which allows a node to limit its exposure to HTLCs; similarly,
129129` max_accepted_htlcs ` limits the number of outstanding HTLCs the other
130- node can offer.
130+ node can offer.
131131
132132` feerate_per_kw ` indicates the initial fee rate by 1000-weight
133133(i.e. 1/4 the more normally-used 'fee rate per kilobyte') that this
134134side will pay for commitment and HTLC transactions, as described in
135135[ BOLT #3 ] ( 03-transactions.md#fee-calculation ) (this can be adjusted
136- later with an ` update_fee ` message).
136+ later with an ` update_fee ` message).
137137
138138` to_self_delay ` is the number of blocks that the other node's to-self
139139outputs must be delayed, using ` OP_CHECKSEQUENCEVERIFY ` delays; this
@@ -775,7 +775,7 @@ Invalid amounts are a clear protocol violation and indicate a breakdown.
775775
776776If a node did not accept multiple HTLCs with the same payment hash, an
777777attacker could probe to see if a node had an existing HTLC. This
778- requirement, to deal with duplicates, leads us to use a separate
778+ requirement, to deal with duplicates, leads to the use of a separate
779779identifier; its assumed a 64-bit counter never wraps.
780780
781781Retransmissions of unacknowledged updates are explicitly allowed for
0 commit comments