diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2018-03-07 14:51:58 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2018-03-07 14:52:42 +0100 |
commit | 0f7167989d60d91ed47e160a58685771d49aa508 (patch) | |
tree | a4e08a510c1200eaf6107bcafe14e3246b050d88 /test/functional/wallet_dump.py | |
parent | 8a709fba9bfa2777561bd5b139a0852768ecb940 (diff) | |
parent | b156ff7c30175f5d23bde97a56a2c34af2196466 (diff) |
Merge #12482: [tests] bind functional test nodes to 127.0.0.1
b156ff7c3 [tests] bind functional test nodes to 127.0.0.1 (Sjors Provoost)
Pull request description:
Replaces #12200 which broke `rpc_bind.py`.
Prevents OSX firewall allow-this-application-to-accept-inbound-connections permission popups and is generally safer.
To prevent binding to `127.0.0.1`, set `self.bind_to_localhost_only = False`.
cc @jnewbery
Tree-SHA512: 5e700124c91bd0cbdee83ca44910071d71d61d8842334755b685d14fbff6454d75de1ea7de67340370386f58b41361e80e90bb4dca5c4d5992f9d2b27985f999
Diffstat (limited to 'test/functional/wallet_dump.py')
-rwxr-xr-x | test/functional/wallet_dump.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_dump.py b/test/functional/wallet_dump.py index 59eae78cbd..ce861ef012 100755 --- a/test/functional/wallet_dump.py +++ b/test/functional/wallet_dump.py @@ -84,7 +84,7 @@ class WalletDumpTest(BitcoinTestFramework): # longer than the default 30 seconds due to an expensive # CWallet::TopUpKeyPool call, and the encryptwallet RPC made later in # the test often takes even longer. - self.add_nodes(self.num_nodes, self.extra_args, timewait=60) + self.add_nodes(self.num_nodes, extra_args=self.extra_args, timewait=60) self.start_nodes() def run_test (self): |