mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-21 16:14:23 +01:00
Makefile: update BOLTVERSION to flatten features.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
committed by
ZmnSCPxj, ZmnSCPxj jxPCSmnZ
parent
55173a56b7
commit
ff1e1dd487
2
Makefile
2
Makefile
@@ -15,7 +15,7 @@ CCANDIR := ccan
|
|||||||
|
|
||||||
# Where we keep the BOLT RFCs
|
# Where we keep the BOLT RFCs
|
||||||
BOLTDIR := ../lightning-rfc/
|
BOLTDIR := ../lightning-rfc/
|
||||||
BOLTVERSION := 35f6376f2050191081b148fb540f604092be59e1
|
BOLTVERSION := 0fb66ca6ccd935d60a48c80544d4b80d5583422c
|
||||||
|
|
||||||
-include config.vars
|
-include config.vars
|
||||||
|
|
||||||
|
|||||||
@@ -40,20 +40,20 @@ void set_feature_bit(u8 **ptr, u32 bit);
|
|||||||
|
|
||||||
/* BOLT #9:
|
/* BOLT #9:
|
||||||
*
|
*
|
||||||
* ## Assigned `localfeatures` flags
|
* | Bits | Name |...
|
||||||
*...
|
* | 0/1 | `option_data_loss_protect` |...
|
||||||
* | Bits | Name |...
|
* | 3 | `initial_routing_sync` |...
|
||||||
* | 0/1 | `option_data_loss_protect` |...
|
* | 4/5 | `option_upfront_shutdown_script` |...
|
||||||
* | 3 | `initial_routing_sync` |...
|
* | 6/7 | `gossip_queries` |...
|
||||||
* | 4/5 | `option_upfront_shutdown_script` |...
|
* | 8/9 | `var_onion_optin` |...
|
||||||
* | 6/7 | `gossip_queries` |...
|
* | 10/11 | `gossip_queries_ex` |...
|
||||||
* | 10/11 | `gossip_queries_ex` |...
|
|
||||||
* | 12/13| `option_static_remotekey` |...
|
* | 12/13| `option_static_remotekey` |...
|
||||||
*/
|
*/
|
||||||
#define OPT_DATA_LOSS_PROTECT 0
|
#define OPT_DATA_LOSS_PROTECT 0
|
||||||
#define OPT_INITIAL_ROUTING_SYNC 2
|
#define OPT_INITIAL_ROUTING_SYNC 2
|
||||||
#define OPT_UPFRONT_SHUTDOWN_SCRIPT 4
|
#define OPT_UPFRONT_SHUTDOWN_SCRIPT 4
|
||||||
#define OPT_GOSSIP_QUERIES 6
|
#define OPT_GOSSIP_QUERIES 6
|
||||||
|
#define OPT_VAR_ONION 8
|
||||||
#define OPT_GOSSIP_QUERIES_EX 10
|
#define OPT_GOSSIP_QUERIES_EX 10
|
||||||
#define OPT_STATIC_REMOTEKEY 12
|
#define OPT_STATIC_REMOTEKEY 12
|
||||||
|
|
||||||
@@ -65,13 +65,4 @@ void set_feature_bit(u8 **ptr, u32 bit);
|
|||||||
#define OPT_PAYMENT_SECRET 14
|
#define OPT_PAYMENT_SECRET 14
|
||||||
#define OPT_BASIC_MPP 16
|
#define OPT_BASIC_MPP 16
|
||||||
|
|
||||||
/* BOLT #9:
|
|
||||||
*
|
|
||||||
* ## Assigned `globalfeatures` flags
|
|
||||||
*...
|
|
||||||
* | Bits | Name | ...
|
|
||||||
* | 8/9 | `var_onion_optin` | ...
|
|
||||||
*/
|
|
||||||
#define OPT_VAR_ONION 8
|
|
||||||
|
|
||||||
#endif /* LIGHTNING_COMMON_FEATURES_H */
|
#endif /* LIGHTNING_COMMON_FEATURES_H */
|
||||||
|
|||||||
Reference in New Issue
Block a user