aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/util.py
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2018-03-14 14:18:44 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2018-03-14 14:21:49 +0100
commitce6ffe196e9bd212f7bbc32fc54038f06866ecb7 (patch)
tree1f8f23f7c2afc364ec0d48cbd9f961a1c47d963f /test/functional/test_framework/util.py
parent9f04c8e23118eeb37db540525bbb45d4bff2cb1a (diff)
parentfa2310572f4cfcd3322409ce7e37dde155fc4bc9 (diff)
downloadbitcoin-ce6ffe196e9bd212f7bbc32fc54038f06866ecb7.tar.xz
Merge #12638: qa: Cache only chain and wallet for regtest datadir
fa23105 qa: Cache only chain and wallet for regtest datadir (MarcoFalke) Pull request description: mempool.dat should be empty and I don't see a need to copy it around when restoring from the cache. Tree-SHA512: f11ab69732db4dee0e9a0900570464e49085532b0cebc963877057112a7b985c477da3d32eb2093daabac9ada9e73b7c49881681ec5efa6101919b0af76001cf
Diffstat (limited to 'test/functional/test_framework/util.py')
-rw-r--r--test/functional/test_framework/util.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py
index 0c7be67a57..7be695550b 100644
--- a/test/functional/test_framework/util.py
+++ b/test/functional/test_framework/util.py
@@ -328,9 +328,6 @@ def get_auth_cookie(datadir):
raise ValueError("No RPC credentials")
return user, password
-def log_filename(dirname, n_node, logname):
- return os.path.join(dirname, "node" + str(n_node), "regtest", logname)
-
def get_bip9_status(node, key):
info = node.getblockchaininfo()
return info['bip9_softforks'][key]