Skip to content

Commit 9b11c72

Browse files
committed
Set REMOTE_HSMD_ENDPOINT default to 127.0.0.1 instead of localhost
1 parent 3644e67 commit 9b11c72

File tree

1 file changed

+1
-1
lines changed
  • contrib/pyln-testing/pyln/testing

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ def start(self, stdin=None, stdout=None, stderr=None,
638638
self.vlsd.start(stdin, stdout, stderr, wait_for_initialized)
639639

640640
# We can't do this in the constructor because we need a new port on each restart.
641-
self.env['REMOTE_HSMD_ENDPOINT'] = 'localhost:{}'.format(vlsd_port)
641+
self.env['REMOTE_HSMD_ENDPOINT'] = '127.0.0.1:{}'.format(vlsd_port)
642642

643643
self.opts['bitcoin-rpcport'] = self.rpcproxy.rpcport
644644
TailableProc.start(self, stdin, stdout, stderr)

0 commit comments

Comments
 (0)