mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 15:14:23 +01:00
pytest: fix feature mask for EXPERIMENTAL_FEATURES, add wumbo support.
There are various places where our tests failed with --enable-expimental-features. And our plugin test overlapped an existing feature. We make our expected_feature functions more generic, and use them everywhere. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
committed by
neil saitug
parent
0b89664076
commit
f4f8a363dd
@@ -6,9 +6,9 @@ from pyln.client import Plugin
|
||||
# later check that they are being passed correctly.
|
||||
plugin = Plugin(
|
||||
dynamic=False,
|
||||
init_features=1 << 101,
|
||||
node_features=1 << 103,
|
||||
invoice_features=1 << 105,
|
||||
init_features=1 << 201,
|
||||
node_features=1 << 203,
|
||||
invoice_features=1 << 205,
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user