Skip to content

Commit 628b2af

Browse files
committed
doc: update BOLT quotes (to include links for anchor outputs).
Signed-off-by: Rusty Russell <[email protected]>
1 parent 535f647 commit 628b2af

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ CCANDIR := ccan
2424

2525
# Where we keep the BOLT RFCs
2626
BOLTDIR := ../lightning-rfc/
27-
BOLTVERSION := 920e51986d654b78d1ec2afc18152c9986f52a9d
27+
BOLTVERSION := b80f8a719406b70f67e4cf7d034e8cd331850173
2828

2929
-include config.vars
3030

channeld/commit_tx.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,9 +302,9 @@ struct bitcoin_tx *commit_tx(const tal_t *ctx,
302302
*
303303
* 8. If `option_anchor_outputs` applies to the commitment transaction:
304304
* * if `to_local` exists or there are untrimmed HTLCs, add a
305-
* `to_local_anchor` output
305+
* [`to_local_anchor` output]...
306306
* * if `to_remote` exists or there are untrimmed HTLCs, add a
307-
* `to_remote_anchor` output
307+
* [`to_remote_anchor` output]
308308
*/
309309
if (option_anchor_outputs) {
310310
if (to_local || untrimmed != 0) {

common/initial_commit_tx.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,9 +258,9 @@ struct bitcoin_tx *initial_commit_tx(const tal_t *ctx,
258258
/* BOLT #3:
259259
* 8. If `option_anchor_outputs` applies to the commitment transaction:
260260
* * if `to_local` exists or there are untrimmed HTLCs, add a
261-
* `to_local_anchor` output
261+
* [`to_local_anchor` output]...
262262
* * if `to_remote` exists or there are untrimmed HTLCs, add a
263-
* `to_remote_anchor` output
263+
* [`to_remote_anchor` output]
264264
*/
265265
if (option_anchor_outputs) {
266266
if (to_local || untrimmed != 0) {

0 commit comments

Comments
 (0)