diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-02-25 23:38:56 +0700 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-02-26 00:00:29 +0700 |
commit | fa45d606461dbf5bf1017d6ab15e89c1bcf821a6 (patch) | |
tree | 7ae16a19f209013ed77c7b35431ab505cb88b0d9 /test/functional/wallet_backup.py | |
parent | 31c0006a6cd5ecbabd119eaf9dae6978aa54f150 (diff) |
test: Reduce unneeded whitelist permissions in tests
Diffstat (limited to 'test/functional/wallet_backup.py')
-rwxr-xr-x | test/functional/wallet_backup.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/wallet_backup.py b/test/functional/wallet_backup.py index 16c69f304a..fb80a06433 100755 --- a/test/functional/wallet_backup.py +++ b/test/functional/wallet_backup.py @@ -50,10 +50,10 @@ class WalletBackupTest(BitcoinTestFramework): # nodes 1, 2,3 are spenders, let's give them a keypool=100 # whitelist all peers to speed up tx relay / mempool sync self.extra_args = [ - ["-keypool=100", "-whitelist=127.0.0.1"], - ["-keypool=100", "-whitelist=127.0.0.1"], - ["-keypool=100", "-whitelist=127.0.0.1"], - ["-whitelist=127.0.0.1"] + ["-whitelist=noban@127.0.0.1", "-keypool=100"], + ["-whitelist=noban@127.0.0.1", "-keypool=100"], + ["-whitelist=noban@127.0.0.1", "-keypool=100"], + ["-whitelist=noban@127.0.0.1"], ] self.rpc_timeout = 120 |