Rusty Russell
6dab04ebd5
tools/generate-wire.py: include digits in #ifndef idempotent header.
Otherwise check complains that it's '#ifndef LIGHTNING_WIRE_BOLT_WIREGEN_H':
wire/bolt12_wiregen.h seems to be missing the expected include guard:
#ifndef LIGHTNING_WIRE_BOLT12_WIREGEN_H
#define LIGHTNING_WIRE_BOLT12_WIREGEN_H
...
#endif /* LIGHTNING_WIRE_BOLT12_WIREGEN_H */
make: *** [Makefile:458: check-includes] Error 1
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
4 years ago
Rusty Russell
27c006f7aa
libplugin: make init return a string.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Changelog-Added: libplugin: init can return a non-NULL string to disable the plugin.
4 years ago
Rusty Russell
529ae0d766
plugins: allow plugins to disable themselves at startup.
By returning 'disable: <reason>' inside getmanifest or init result.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Changelog-Added: plugins: plugins can now disable themselves by returning `disable`, even if marked important.
4 years ago
Rusty Russell
fc3e679c97
lightningd: control onion messages by `experimental-onion-messages` option.
Note that this also changes so the feature is not represented in channels,
reflecting the recent drafts.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Changelog-Added: `experimental-onion-messages` enables send, receive and relay of onion messages.
4 years ago
Rusty Russell
5a483ddd8b
wire: Apply onion mesages spec patch even when not experimental.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
4 years ago
Rusty Russell
c3200b07de
wire: add bolt12_wire.csv
For some reason, an old version was checked in. We don't currently
use it (since bolt12 support depends on EXPERIMENTAL_FEATURES, which
uses bolt12_exp_wire.csv, which is generated and not checked in).
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
4 years ago
Rusty Russell
7af63eb0a7
wire/Makefile: refactor to allow non-experimental spec patches.
And rename the current patches to all be _exp_*.patch. These
are applied after the basic patches.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Header from folded patch 'fix.patch':
4 years ago
Christian Decker
1794d0ff4e
doc: Add changelog for version v0.9.3rc1
4 years ago
niftynei
9906236769
autodata: requests new line number, please
4 years ago
niftynei
7e324177de
df-tests: simultaneous openchannel_init (while in progress)
Reject a peer's request to open a channel while we're already in progress
4 years ago
niftynei
2c9ce2566c
df-tests: test_lightningd_still_loading
4 years ago
niftynei
a357e75c5d
df-tests: test_disconnect_half_signed + test_reconnect_signed
4 years ago
niftynei
fec1d9b707
df-tests: test_reconnect_openingd
4 years ago
niftynei
7eb6213fca
df-tests: test_reconnect_sender_add1, others
We're still ignoring multifundchannel failure tests, but now we use the
'dual-fund' flag instead of a blanket true.
4 years ago
niftynei
d9c68a708a
df-tests: test_reconnect_receiver_add
4 years ago
niftynei
96c42262ab
df-tests: test_peerinfo
4 years ago
niftynei
135cd178f7
df-tests: test_channel_persistence
4 years ago
niftynei
a82bfa83ff
df-tests: have the df_accepter plugin keep track of attempts
Test connection/reconnection handling for v2 opens. We needed to fixup
the accepter plugin so that we were freeing up inputs on
disconnect/failure.
4 years ago
niftynei
88b4b5b2bb
df-tests: test_disconnect_opener
4 years ago
niftynei
3e330d7186
df-tests: test_forward_local_failed_stats
4 years ago
niftynei
973224dd14
df-tests: if we're using fundbalancechannel, set up plugin
nodes need to be using the accepter plugin, so they'll match funding.
we used to use push_msat for this, but v2 gets rid of it.
*sad trombone*
4 years ago
niftynei
f822a93cf4
df-tests: add `setacceptmaxfunding` to df_accepter plugin
Method for setting a ceiling on the fund matching capabilities of
df_accepter. Setting it to zero means we don't fund the channel anymore.
4 years ago
niftynei
ea1895fc1e
pyln-tests: tweak `fundbalancedchannel` to assume peer will match
we got rid of push_msats for dual funded channels. this assumes that hte
peer will match an equal amount of sats as ours (the df_accepter.py
plugin will do this)
4 years ago
niftynei
e964c31369
df-tests: test_payment_success|failed_persistence
4 years ago
niftynei
fa539d3281
df-tests: make memleak happy by cleaning up `psbt`
We don't need it anymore. Normally it gets cleaned up by `cmd` but we're
done with it here.
4 years ago
niftynei
09da171381
df-tests: test_io_logging
Move pid collection down to when dualopend is definitely dead
4 years ago
niftynei
609d509ca5
df-tests: test_channel_state_changed_unilateral
4 years ago
niftynei
ac88c72f1e
df-tests: test_channel_state_changed_bilateral
4 years ago
niftynei
450a094d26
df-tests: test_coin_movement_notices
4 years ago
niftynei
ff0e2dbd28
df-tests: test_channel_opened_notification
We weren't sending a channel_open notification for dual-funded channels.
This is only sent for the 'accepter' side. We send it as soon as both
funding_tx sigs have been exchanged, even though it's possible the
funding transaction might be published without this having been the case.
Since we fail the channel if this happens, only notifying for good/valid
channels reaching the broadcast state is the right way to handle this.
4 years ago
niftynei
923e1f5c80
df-tests: test_feature_set
4 years ago
niftynei
db65771f38
df-tests: test_plugin_feature_announce
4 years ago
niftynei
21b9bec93b
df-tests: test_channel_state_change_history
4 years ago
niftynei
959ca793b0
df-tests: test_openchannel_hook_error_handling
4 years ago
niftynei
803d9701d3
df-tests: test_openchannel_hook_chaining
4 years ago
niftynei
b0a8b10b41
df-tests: test_openchannel_hook
Have it check both openchannel + openchannel2
4 years ago
niftynei
0d45823b82
df-tests: test_funding_reorg_private
4 years ago
niftynei
09834bbc8d
df-tests: test_node_reannounce correct features
4 years ago
niftynei
c055198869
df-tests: test_fail_unconfirmed, duplicate with correct wires
4 years ago
niftynei
dfa0eb0f2f
df-tests: test_shutdown_awaiting_lockin check correct state
4 years ago
niftynei
5c7cc15a75
df-tests: adjust logsearch/features for test_dataloss_protection
4 years ago
niftynei
e661d87440
df-tests: fixup expected features for dual-funding channels
4 years ago
niftynei
08200f03a7
df-tests: test_multifunding_v2_v1_mixed update to use flag
Now that we've got a fancy flag to enable dual funding, let's use it
4 years ago
niftynei
8fb97fd7e1
df-tests: updates for plugin hook_accepter helper
Fixes so that test_funding_close_upfront works with v2 opens
4 years ago
niftynei
f4b7904ce5
tests: don't enforce daemon name on opening logline
4 years ago
niftynei
9951638d5f
df: add flag to signal to run v2 channel open tests
4 years ago
niftynei
3c1d90086f
pyln-testing: add 'config' method to a node
Query for a config's value. If not set, returns 'none'
4 years ago
niftynei
327d9a3ff6
experimental-dual-fund: add config level option for enabling dual-fund
Allow a user to switch on dual-funding without needing to compile
as EXPERIMENTAL_FEATURES.
Doesn't work yet, since everything is still behind
'EXPERIMENTAL_FEATURES' compile time flags... but useful for testing
4 years ago
niftynei
205a7057c9
df: use dev-env flagged upfront shutdown script
This lets the test_option_upfront_shutdown_script test pass
4 years ago
niftynei
5387f6736c
df: free psbt on negotiation failed
4 years ago