From bbb6fd441326dcec488777111744abafdbfd5df2 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 18 Mar 2024 13:32:06 +1030 Subject: [PATCH] BOLTs: catch up with minor clarifications. Signed-off-by: Rusty Russell --- Makefile | 2 +- common/channel_config.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 5e728dfbb..5014b024d 100644 --- a/Makefile +++ b/Makefile @@ -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) diff --git a/common/channel_config.h b/common/channel_config.h index fb74a4998..bb830b872 100644 --- a/common/channel_config.h +++ b/common/channel_config.h @@ -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