Skip to content

Commit 79a40b6

Browse files
committed
TEMPORARY COMMIT
This commit is only needed until dashpay#3110 is merged
1 parent c1a6f0c commit 79a40b6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/functional/minchainwork.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
REGTEST_WORK_PER_BLOCK = 2
2525

2626
class MinimumChainWorkTest(BitcoinTestFramework):
27-
def set_test_params(self):
27+
def __init__(self):
28+
super().__init__()
2829
self.setup_clean_chain = True
2930
self.num_nodes = 3
3031

test/functional/multiwallet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def run_test(self):
3333
# should not initialize if one wallet is a copy of another
3434
shutil.copyfile(os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w2'),
3535
os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w22'))
36-
self.assert_start_raises_init_error(0, ['-wallet=w2', '-wallet=w22'], 'duplicates fileid')
36+
self.assert_start_raises_init_error(0, self.options.tmpdir, ['-wallet=w2', '-wallet=w22'], 'duplicates fileid')
3737

3838
# should not initialize if wallet file is a symlink
3939
os.symlink(os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w1'), os.path.join(self.options.tmpdir, 'node0', 'regtest', 'w12'))

0 commit comments

Comments
 (0)