Skip to content

Commit

Permalink
Add --rpc argument to connect vlsd to regtest in integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ksedgwic committed Apr 12, 2022
1 parent 73d40f4 commit fce4622
Showing 1 changed file with 5 additions and 1 deletion.
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

0 comments on commit fce4622

Please sign in to comment.