BOLTs: catch up with minor clarifications.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2024-03-18 13:32:06 +10:30 committed by Alex Myers
parent ac3c178587
commit bbb6fd4413
2 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ CCANDIR := ccan
# Where we keep the BOLT RFCs
BOLTDIR := ../bolts/
DEFAULT_BOLTVERSION := 6e85df448bfee7d10f26aabb06b8eba3d7505888
DEFAULT_BOLTVERSION := 4dcc377209509b13cf89a4b91fde7d478f5b46d8
# Can be overridden on cmdline.
BOLTVERSION := $(DEFAULT_BOLTVERSION)

View File

@ -42,8 +42,8 @@ struct channel_config {
/* BOLT #2:
*
* `max_htlc_value_in_flight_msat` is a cap on total value of
* outstanding HTLCs, which allows a node to limit its exposure to
* HTLCs */
* outstanding HTLCs offered by the remote node, which allows the
* local node to limit its exposure to HTLCs */
struct amount_msat max_htlc_value_in_flight;
/* BOLT #2:
@ -69,7 +69,7 @@ struct channel_config {
/* BOLT #2:
*
* similarly, `max_accepted_htlcs` limits the number of outstanding
* HTLCs the other node can offer. */
* HTLCs the remote node can offer. */
u16 max_accepted_htlcs;
/* BOLT-TBD #X