Skip to content

Commit 9474809

Browse files
authored
Merge pull request #56 from lightning-signer/2022-03-08-use-chainfollower
Use the chain follower
2 parents 73d40f4 + 6559667 commit 9474809

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

contrib/pyln-testing/pyln/testing/utils.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,11 @@ def __init__(self, vlsd_dir, vlsd_port):
542542
'--port={}'.format(vlsd_port),
543543
'--initial-allowlist-file={}'.format(env('REMOTE_SIGNER_ALLOWLIST',
544544
'contrib/remote_hsmd/TESTING_ALLOWLIST')),
545-
]
545+
'--rpc=http://{}:{}@127.0.0.1:{}'.format(
546+
BITCOIND_CONFIG['rpcuser'],
547+
BITCOIND_CONFIG['rpcpassword'],
548+
BITCOIND_CONFIG['rpcport']),
549+
]
546550
self.prefix = 'vlsd'
547551
self.vlsd_port = vlsd_port
548552

tests/test_misc.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1034,7 +1034,6 @@ def test_daemon_option(node_factory):
10341034

10351035
@flaky
10361036
@pytest.mark.developer("needs DEVELOPER=1")
1037-
@unittest.skipIf(os.getenv('SUBDAEMON').startswith('hsmd:remote_hsmd'), "remote_hsmd doesn't have repeatable random seeding")
10381037
def test_blockchaintrack(node_factory, bitcoind):
10391038
"""Check that we track the blockchain correctly across reorgs
10401039
"""

0 commit comments

Comments
 (0)