diff options
| author | whythat <[email protected]> | 2016-09-05 02:04:37 +0300 |
|---|---|---|
| committer | whythat <[email protected]> | 2016-09-05 02:06:49 +0300 |
| commit | c62cc4ec759a8487373f158b3cbb888efcdd753a (patch) | |
| tree | 61d464e2c276fa467f2f27db47bf4e98f631e1d6 | |
| parent | remove root test directory for RPC tests (diff) | |
| download | discoin-c62cc4ec759a8487373f158b3cbb888efcdd753a.tar.xz discoin-c62cc4ec759a8487373f158b3cbb888efcdd753a.zip | |
fix path for bak file
| -rwxr-xr-x | qa/rpc-tests/wallet-hd.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/rpc-tests/wallet-hd.py b/qa/rpc-tests/wallet-hd.py index c11da1e9a..a49d91f6f 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) |