You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6.4 KiB
6.4 KiB
1 | #include <bitcoin/chainparams.h> |
---|---|
2 | #include <common/cryptomsg.h> |
3 | #include <common/channel_config.h> |
4 | #include <common/channel_id.h> |
5 | #include <common/derive_basepoints.h> |
6 | #include <common/features.h> |
7 | #include <common/per_peer_state.h> |
8 | # Which network are we configured for? |
9 | # Base configuration we'll offer (channel reserve will vary with amount) |
10 | # Minimum/maximum configuration values we'll accept |
11 | # Constraints in case the other end tries to open a channel. |
12 | # Optional msg to send. |
13 | # master->openingd: optional rejection message |
14 | #include <common/penalty_base.h> |
15 | # Openingd->master: we've successfully offered channel. |
16 | # master->openingd: start channel establishment for a funding tx |
17 | # openingd->master: send back output script for 2-of-2 funding output |
18 | # master->openingd: complete channel establishment for a funding |
19 | # tx that will be paid for by an external wallet |
20 | # response to this is a normal `openingd_funder_reply` ?? |
21 | #master->openingd: cancel channel establishment for a funding |
22 | # Openingd->master: we failed to negotiation channel |
23 | # Openingd->master: they offered channel. |
24 | # The funding signed message: send this and we're committed. |
25 | # master -> openingd: do you have a memleak? |