tests: add test case for loading copied wallet twice
Github-Pull: #14320
Rebased-From: 4ea7732
This commit is contained in:
parent
8965b6ab47
commit
34da2b7c76
1 changed files with 4 additions and 0 deletions
|
@ -220,6 +220,10 @@ class MultiWalletTest(BitcoinTestFramework):
|
|||
# Fail to load if one wallet is a copy of another
|
||||
assert_raises_rpc_error(-1, "BerkeleyBatch: Can't open database w8_copy (duplicates fileid", self.nodes[0].loadwallet, 'w8_copy')
|
||||
|
||||
# Fail to load if one wallet is a copy of another, test this twice to make sure that we don't re-introduce #14304
|
||||
assert_raises_rpc_error(-1, "BerkeleyBatch: Can't open database w8_copy (duplicates fileid", self.nodes[0].loadwallet, 'w8_copy')
|
||||
|
||||
|
||||
# Fail to load if wallet file is a symlink
|
||||
assert_raises_rpc_error(-4, "Wallet file verification failed: Invalid -wallet path 'w8_symlink'", self.nodes[0].loadwallet, 'w8_symlink')
|
||||
|
||||
|
|
Loading…
Reference in a new issue