1
0

public channels:

- send node and channel announcements.
 - store channel_flags in constraints
 - store signatures in local and remote configs
This commit is contained in:
ThomasV
2023-10-13 15:49:13 +02:00
parent aad4fd6d48
commit 98a4d7b60d
8 changed files with 188 additions and 97 deletions

View File

@@ -1024,6 +1024,7 @@ This will result in longer routes; it might increase your fees and decrease the
)
INITIAL_TRAMPOLINE_FEE_LEVEL = ConfigVar('initial_trampoline_fee_level', default=1, type_=int)
LIGHTNING_NODE_ALIAS = ConfigVar('lightning_node_alias', default='', type_=str)
EXPERIMENTAL_LN_FORWARD_PAYMENTS = ConfigVar('lightning_forward_payments', default=False, type_=bool)
EXPERIMENTAL_LN_FORWARD_TRAMPOLINE_PAYMENTS = ConfigVar('lightning_forward_trampoline_payments', default=False, type_=bool)
TEST_FAIL_HTLCS_WITH_TEMP_NODE_FAILURE = ConfigVar('test_fail_htlcs_with_temp_node_failure', default=False, type_=bool)