tests: remove EXPERIMENTAL_FEATURE flag from openchannel2 hooks

These are now included in all builds
This commit is contained in:
niftynei
2021-04-20 15:44:45 -05:00
committed by Rusty Russell
parent 15e83925e8
commit 0e753224ae
4 changed files with 20 additions and 40 deletions

View File

@@ -5,14 +5,10 @@ We just refuse to let them open channels with an odd amount of millisatoshis.
"""
from pyln.client import Plugin, Millisatoshi
from pyln.testing.utils import env
plugin = Plugin()
EXPERIMENTAL_FEATURES = env("EXPERIMENTAL_FEATURES", "0") == "1"
def run_check(funding_amt_str):
if Millisatoshi(funding_amt_str).to_satoshi() % 2 == 1:
return {'result': 'reject', 'error_message': "I don't like odd amounts"}
@@ -28,14 +24,13 @@ def on_openchannel(openchannel, plugin, **kwargs):
return run_check(openchannel['funding_satoshis'])
if EXPERIMENTAL_FEATURES:
@plugin.hook('openchannel2')
def on_openchannel2(openchannel2, plugin, **kwargs):
print("{} VARS".format(len(openchannel2.keys())))
for k in sorted(openchannel2.keys()):
print("{}={}".format(k, openchannel2[k]))
@plugin.hook('openchannel2')
def on_openchannel2(openchannel2, plugin, **kwargs):
print("{} VARS".format(len(openchannel2.keys())))
for k in sorted(openchannel2.keys()):
print("{}={}".format(k, openchannel2[k]))
return run_check(openchannel2['their_funding'])
return run_check(openchannel2['their_funding'])
plugin.run()