aboutsummaryrefslogtreecommitdiff
path: root/test/functional/rpc_dumptxoutset.py
diff options
context:
space:
mode:
authorSebastian Falbesoner <sebastian.falbesoner@gmail.com>2020-02-05 04:18:57 +0100
committerSebastian Falbesoner <sebastian.falbesoner@gmail.com>2020-02-05 04:28:40 +0100
commiteca56f89293b74f11ca631ff2a0793e970e65841 (patch)
treeda1a732dead0c18bad5588fada704bcf5b509f9a /test/functional/rpc_dumptxoutset.py
parent8625446b4d86880be9e218f3cd136de1e382101d (diff)
downloadbitcoin-eca56f89293b74f11ca631ff2a0793e970e65841.tar.xz
test: replace 'regtest' leftovers by self.chain
Commit 1abcecc40c518a98b7d17880657ec0247abdf125 replaced 'regtest' by self.chain 'regtest' "in almost all current tests", this commit takes care of the remaining ones.
Diffstat (limited to 'test/functional/rpc_dumptxoutset.py')
-rwxr-xr-xtest/functional/rpc_dumptxoutset.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/rpc_dumptxoutset.py b/test/functional/rpc_dumptxoutset.py
index 7527bdfb08..438e7f68e0 100755
--- a/test/functional/rpc_dumptxoutset.py
+++ b/test/functional/rpc_dumptxoutset.py
@@ -25,7 +25,7 @@ class DumptxoutsetTest(BitcoinTestFramework):
FILENAME = 'txoutset.dat'
out = node.dumptxoutset(FILENAME)
- expected_path = Path(node.datadir) / 'regtest' / FILENAME
+ expected_path = Path(node.datadir) / self.chain / FILENAME
assert expected_path.is_file()