mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
ff1d537b87
1. Allow 'any' as an option to zeroconf-selective.py plugin so we can use it in line_graph where we don't know ids yet. 2. Use modern helpers like line_graph and remove debugging statement. 3. Don't use listchannels(): it's true that it shows local channels as well, but that's a quirk I'd like to remove. 4. Make flake8 happy. 5. Rename to be more specific now it's a more narrow test. I manually tested that the test still failed with the fixes removed, too, so it is still the same test! Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
35 lines
944 B
Python
Executable File
35 lines
944 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Use the openchannel hook to selectively opt-into zeroconf
|
|
"""
|
|
|
|
from pyln.client import Plugin
|
|
|
|
plugin = Plugin()
|
|
|
|
|
|
@plugin.hook('openchannel')
|
|
def on_openchannel(openchannel, plugin, **kwargs):
|
|
plugin.log(repr(openchannel))
|
|
mindepth = int(plugin.options['zeroconf-mindepth']['value'])
|
|
|
|
if openchannel['id'] == plugin.options['zeroconf-allow']['value'] or plugin.options['zeroconf-allow']['value'] == 'any':
|
|
plugin.log(f"This peer is in the zeroconf allowlist, setting mindepth={mindepth}")
|
|
return {'result': 'continue', 'mindepth': mindepth}
|
|
else:
|
|
return {'result': 'continue'}
|
|
|
|
|
|
plugin.add_option(
|
|
'zeroconf-allow',
|
|
'A node_id to allow zeroconf channels from',
|
|
'03864ef025fde8fb587d989186ce6a4a186895ee44a926bfc370e2c366597a3f8f'
|
|
)
|
|
|
|
plugin.add_option(
|
|
'zeroconf-mindepth',
|
|
0,
|
|
'Number of confirmations to require from allowlisted peers',
|
|
)
|
|
|
|
plugin.run()
|