mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-03 10:46:58 +01:00
parent
73ea6d0038
commit
b1f15c2605
3 changed files with 5 additions and 5 deletions
2
Makefile
2
Makefile
|
@ -9,7 +9,7 @@ CCANDIR := ccan
|
|||
|
||||
# Where we keep the BOLT RFCs
|
||||
BOLTDIR := ../lightning-rfc/
|
||||
BOLTVERSION := 4b62d26af93a07166d6a9de2cb5eff80849d9c19
|
||||
BOLTVERSION := a9195a84d07b9350f0eb1262ed0c1a82bc42e4ef
|
||||
|
||||
-include config.vars
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue