From 628b2af58f593b5df60b6bcc69a1fc1941a073f1 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 22 Feb 2021 12:28:26 +1030 Subject: [PATCH] doc: update BOLT quotes (to include links for anchor outputs). Signed-off-by: Rusty Russell --- Makefile | 2 +- channeld/commit_tx.c | 4 ++-- common/initial_commit_tx.c | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 5516516c933c..7e4d86c32466 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ CCANDIR := ccan # Where we keep the BOLT RFCs BOLTDIR := ../lightning-rfc/ -BOLTVERSION := 920e51986d654b78d1ec2afc18152c9986f52a9d +BOLTVERSION := b80f8a719406b70f67e4cf7d034e8cd331850173 -include config.vars diff --git a/channeld/commit_tx.c b/channeld/commit_tx.c index 16ec4df62d1d..d3483d6ddb6f 100644 --- a/channeld/commit_tx.c +++ b/channeld/commit_tx.c @@ -302,9 +302,9 @@ struct bitcoin_tx *commit_tx(const tal_t *ctx, * * 8. If `option_anchor_outputs` applies to the commitment transaction: * * if `to_local` exists or there are untrimmed HTLCs, add a - * `to_local_anchor` output + * [`to_local_anchor` output]... * * if `to_remote` exists or there are untrimmed HTLCs, add a - * `to_remote_anchor` output + * [`to_remote_anchor` output] */ if (option_anchor_outputs) { if (to_local || untrimmed != 0) { diff --git a/common/initial_commit_tx.c b/common/initial_commit_tx.c index 15a34b391d03..c18201b4261b 100644 --- a/common/initial_commit_tx.c +++ b/common/initial_commit_tx.c @@ -258,9 +258,9 @@ struct bitcoin_tx *initial_commit_tx(const tal_t *ctx, /* BOLT #3: * 8. If `option_anchor_outputs` applies to the commitment transaction: * * if `to_local` exists or there are untrimmed HTLCs, add a - * `to_local_anchor` output + * [`to_local_anchor` output]... * * if `to_remote` exists or there are untrimmed HTLCs, add a - * `to_remote_anchor` output + * [`to_remote_anchor` output] */ if (option_anchor_outputs) { if (to_local || untrimmed != 0) {