diff --git a/contrib/pyln-testing/pyln/testing/utils.py b/contrib/pyln-testing/pyln/testing/utils.py index 38bd8039fe93..88f05401009e 100644 --- a/contrib/pyln-testing/pyln/testing/utils.py +++ b/contrib/pyln-testing/pyln/testing/utils.py @@ -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