Skip to content

Commit

Permalink
Merge pull request #56 from lightning-signer/2022-03-08-use-chainfoll…
Browse files Browse the repository at this point in the history
…ower

Use the chain follower
  • Loading branch information
ksedgwic authored Apr 15, 2022
2 parents 73d40f4 + 6559667 commit 9474809
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion contrib/pyln-testing/pyln/testing/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,11 @@ def __init__(self, vlsd_dir, vlsd_port):
'--port={}'.format(vlsd_port),
'--initial-allowlist-file={}'.format(env('REMOTE_SIGNER_ALLOWLIST',
'contrib/remote_hsmd/TESTING_ALLOWLIST')),
]
'--rpc=http://{}:{}@127.0.0.1:{}'.format(
BITCOIND_CONFIG['rpcuser'],
BITCOIND_CONFIG['rpcpassword'],
BITCOIND_CONFIG['rpcport']),
]
self.prefix = 'vlsd'
self.vlsd_port = vlsd_port

Expand Down
1 change: 0 additions & 1 deletion tests/test_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,6 @@ def test_daemon_option(node_factory):

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

0 comments on commit 9474809

Please sign in to comment.