diff options
author | John Newbery <john@johnnewbery.com> | 2017-08-24 11:37:25 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-09-01 12:25:54 -0400 |
commit | 6cf094a0229d051ab8a15189c8a0bc6011919e72 (patch) | |
tree | 81fa4f2d2c6179cc6f3c0a7e2c6d9d818414fb24 /test/functional/assumevalid.py | |
parent | 36b626867087e9fae6d85f926248997ebff327b7 (diff) |
[tests] Avoid passing around member variables in test_framework
Diffstat (limited to 'test/functional/assumevalid.py')
-rwxr-xr-x | test/functional/assumevalid.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/assumevalid.py b/test/functional/assumevalid.py index 63e6a384a4..ec485281d4 100755 --- a/test/functional/assumevalid.py +++ b/test/functional/assumevalid.py @@ -60,7 +60,7 @@ class AssumeValidTest(BitcoinTestFramework): self.num_nodes = 3 def setup_network(self): - self.add_nodes(3, self.options.tmpdir) + self.add_nodes(3) # Start node0. We don't start the other nodes yet since # we need to pre-mine a block with an invalid transaction # signature so we can pass in the block hash as assumevalid. |