common: offer option_basic_mpp for EXPERIMENTAL_FEATURES.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell
2019-12-12 10:25:45 +10:30
committed by Christian Decker
parent 207689c274
commit 5d413e0f79
4 changed files with 9 additions and 4 deletions

View File

@@ -9,8 +9,8 @@ COMPAT = env("COMPAT", "1") == "1"
def expected_features():
"""Return the expected features hexstring for this configuration"""
if EXPERIMENTAL_FEATURES:
# features 1, 3, 7, 9, 11, 13 and 15 (0xaaa2).
return "aaa2"
# features 1, 3, 7, 9, 11, 13, 15 and 17 (0x02aaa2).
return "02aaa2"
else:
# features 1, 3, 7, 11 and 13 (0x28a2).
return "28a2"