diff --git a/Makefile b/Makefile index 29d25591c..4fdd27876 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ CCANDIR := ccan # Where we keep the BOLT RFCs BOLTDIR := ../lightning-rfc/ -BOLTVERSION := 4b62d26af93a07166d6a9de2cb5eff80849d9c19 +BOLTVERSION := a9195a84d07b9350f0eb1262ed0c1a82bc42e4ef -include config.vars diff --git a/channeld/commit_tx.c b/channeld/commit_tx.c index 33ed4f4be..ad44e9982 100644 --- a/channeld/commit_tx.c +++ b/channeld/commit_tx.c @@ -200,7 +200,7 @@ struct bitcoin_tx *commit_tx(const tal_t *ctx, * * 5. If the `to_local` amount is greater or equal to * `dust_limit_satoshis`, add a [`to_local` - * output](#to-local-output). + * output](#to_local-output). */ if (self_pay_msat / 1000 >= dust_limit_satoshis) { u8 *wscript = to_self_wscript(tmpctx, to_self_delay,keyset); @@ -218,7 +218,7 @@ struct bitcoin_tx *commit_tx(const tal_t *ctx, * * 6. If the `to_remote` amount is greater or equal to * `dust_limit_satoshis`, add a [`to_remote` - * output](#to-remote-output). + * output](#to_remote-output). */ if (other_pay_msat / 1000 >= dust_limit_satoshis) { /* BOLT #3: diff --git a/common/initial_commit_tx.c b/common/initial_commit_tx.c index 6142f6fb3..bdbff1232 100644 --- a/common/initial_commit_tx.c +++ b/common/initial_commit_tx.c @@ -157,7 +157,7 @@ struct bitcoin_tx *initial_commit_tx(const tal_t *ctx, * * 5. If the `to_local` amount is greater or equal to * `dust_limit_satoshis`, add a [`to_local` - * output](#to-local-output). + * output](#to_local-output). */ if (self_pay_msat / 1000 >= dust_limit_satoshis) { u8 *wscript = to_self_wscript(tmpctx, to_self_delay,keyset); @@ -170,7 +170,7 @@ struct bitcoin_tx *initial_commit_tx(const tal_t *ctx, * * 6. If the `to_remote` amount is greater or equal to * `dust_limit_satoshis`, add a [`to_remote` - * output](#to-remote-output). + * output](#to_remote-output). */ if (other_pay_msat / 1000 >= dust_limit_satoshis) { /* BOLT #3: