aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/wallet-hd.py
diff options
context:
space:
mode:
authorwhythat <yuri.zhykin@gmail.com>2016-09-02 12:38:04 +0300
committerMarcoFalke <falke.marco@gmail.com>2016-09-16 11:28:48 +0200
commit63462c2b4bcd250402b040bc19f2ae39771a62f7 (patch)
tree51d9dea55eab1a10141702e33bec85f5ff5d3ec4 /qa/rpc-tests/wallet-hd.py
parent4731623777abfe538190e72305b315b3c251b84e (diff)
downloadbitcoin-63462c2b4bcd250402b040bc19f2ae39771a62f7.tar.xz
[qa] remove root test directory for RPC tests
Github-Pull: #8652 Rebased-From: 438e94dc330a37600ec1d86f2ba8502385b5262d c62cc4ec759a8487373f158b3cbb888efcdd753a
Diffstat (limited to 'qa/rpc-tests/wallet-hd.py')
-rwxr-xr-xqa/rpc-tests/wallet-hd.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/rpc-tests/wallet-hd.py b/qa/rpc-tests/wallet-hd.py
index c11da1e9a9..a49d91f6f4 100755
--- a/qa/rpc-tests/wallet-hd.py
+++ b/qa/rpc-tests/wallet-hd.py
@@ -39,8 +39,8 @@ class WalletHDTest(BitcoinTestFramework):
self.nodes[1].importprivkey(self.nodes[0].dumpprivkey(non_hd_add))
# This should be enough to keep the master key and the non-HD key
- self.nodes[1].backupwallet(tmpdir + "hd.bak")
- #self.nodes[1].dumpwallet(tmpdir + "hd.dump")
+ self.nodes[1].backupwallet(tmpdir + "/hd.bak")
+ #self.nodes[1].dumpwallet(tmpdir + "/hd.dump")
# Derive some HD addresses and remember the last
# Also send funds to each add
@@ -63,7 +63,7 @@ class WalletHDTest(BitcoinTestFramework):
print("Restore backup ...")
self.stop_node(1)
os.remove(self.options.tmpdir + "/node1/regtest/wallet.dat")
- shutil.copyfile(tmpdir + "hd.bak", tmpdir + "/node1/regtest/wallet.dat")
+ shutil.copyfile(tmpdir + "/hd.bak", tmpdir + "/node1/regtest/wallet.dat")
self.nodes[1] = start_node(1, self.options.tmpdir, self.node_args[1])
#connect_nodes_bi(self.nodes, 0, 1)