diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-02-11 13:56:19 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-02-19 14:22:13 -0500 |
commit | 1111aecbb58d6e37d430d477ac43f52811fd97d9 (patch) | |
tree | 2ab2e86f5155279ca30701ca1eb03b510bcf347f /test/functional/feature_proxy.py | |
parent | fab0d858027844f602e9e6103a66d97fdacc13ab (diff) |
qa: Always refresh stale cache to be out of ibd
Diffstat (limited to 'test/functional/feature_proxy.py')
-rwxr-xr-x | test/functional/feature_proxy.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/feature_proxy.py b/test/functional/feature_proxy.py index 31d2ee8e13..5453f0be3b 100755 --- a/test/functional/feature_proxy.py +++ b/test/functional/feature_proxy.py @@ -41,9 +41,11 @@ from test_framework.netutil import test_ipv6_local RANGE_BEGIN = PORT_MIN + 2 * PORT_RANGE # Start after p2p and rpc ports + class ProxyTest(BitcoinTestFramework): def set_test_params(self): self.num_nodes = 4 + self.setup_clean_chain = True def setup_nodes(self): self.have_ipv6 = test_ipv6_local() @@ -198,4 +200,3 @@ class ProxyTest(BitcoinTestFramework): if __name__ == '__main__': ProxyTest().main() - |