mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 22:31:48 +01:00
fixup! msggen: add listconfigs method
This commit is contained in:
parent
1dd16f72fb
commit
36ef3db762
1 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
from fixtures import * # noqa: F401,F403
|
||||
from pathlib import Path
|
||||
from pyln import grpc as clnpb
|
||||
from pyln.testing.utils import env, TEST_NETWORK, wait_for, sync_blockheight, TIMEOUT
|
||||
from pyln.testing.utils import env, TEST_NETWORK, wait_for, sync_blockheight, TIMEOUT, reserve_unused_port
|
||||
from utils import first_scid
|
||||
import grpc
|
||||
import pytest
|
||||
|
@ -403,7 +403,7 @@ def test_rust_plugin_subscribe_wildcard(node_factory):
|
|||
|
||||
|
||||
def test_grpc_block_added_notifications(node_factory, bitcoind):
|
||||
grpc_port = node_factory.reserve_unused_port()
|
||||
grpc_port = reserve_unused_port()
|
||||
|
||||
l1 = node_factory.get_node(options={"grpc-port": str(grpc_port)})
|
||||
|
||||
|
@ -421,7 +421,7 @@ def test_grpc_block_added_notifications(node_factory, bitcoind):
|
|||
|
||||
|
||||
def test_grpc_connect_notification(node_factory):
|
||||
grpc_port = node_factory.reserve_unused_port()
|
||||
grpc_port = reserve_unused_port()
|
||||
|
||||
l1 = node_factory.get_node(options={"grpc-port": str(grpc_port)})
|
||||
l2 = node_factory.get_node()
|
||||
|
@ -436,7 +436,7 @@ def test_grpc_connect_notification(node_factory):
|
|||
|
||||
|
||||
def test_grpc_custommsg_notification(node_factory):
|
||||
grpc_port = node_factory.reserve_unused_port()
|
||||
grpc_port = reserve_unused_port()
|
||||
|
||||
l1 = node_factory.get_node(options={"grpc-port": str(grpc_port)})
|
||||
l2 = node_factory.get_node()
|
||||
|
|
Loading…
Add table
Reference in a new issue