aboutsummaryrefslogtreecommitdiff
path: root/test/functional/smartfees.py
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-08-24 11:37:25 -0400
committerMarcoFalke <falke.marco@gmail.com>2017-10-03 18:43:29 +0200
commitbb5e7cb308b58a1c16db1275dfca1a31e2bba71f (patch)
treec2cb3f348525b7ee868231c45baf10bab9d80f9b /test/functional/smartfees.py
parent4d3ba18386c7a09086d06c8b640c19343ff34188 (diff)
downloadbitcoin-bb5e7cb308b58a1c16db1275dfca1a31e2bba71f.tar.xz
[tests] Avoid passing around member variables in test_framework
Github-Pull: #11121 Rebased-From: 6cf094a0229d051ab8a15189c8a0bc6011919e72
Diffstat (limited to 'test/functional/smartfees.py')
-rwxr-xr-xtest/functional/smartfees.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/functional/smartfees.py b/test/functional/smartfees.py
index 6eb6658466..caf3592652 100755
--- a/test/functional/smartfees.py
+++ b/test/functional/smartfees.py
@@ -153,9 +153,9 @@ class EstimateFeeTest(BitcoinTestFramework):
But first we need to use one node to create a lot of outputs
which we will use to generate our transactions.
"""
- self.add_nodes(3, self.options.tmpdir, extra_args=[["-maxorphantx=1000", "-whitelist=127.0.0.1"],
- ["-blockmaxsize=17000", "-maxorphantx=1000"],
- ["-blockmaxsize=8000", "-maxorphantx=1000"]])
+ self.add_nodes(3, extra_args=[["-maxorphantx=1000", "-whitelist=127.0.0.1"],
+ ["-blockmaxsize=17000", "-maxorphantx=1000"],
+ ["-blockmaxsize=8000", "-maxorphantx=1000"]])
# Use node0 to mine blocks for input splitting
# Node1 mines small blocks but that are bigger than the expected transaction rate.
# NOTE: the CreateNewBlock code starts counting block size at 1,000 bytes,