[qa] wallet: Temporarily disable salvagewallet test
This commit is contained in:
parent
fadd048592
commit
fa83a5dbce
1 changed files with 4 additions and 3 deletions
|
@ -306,7 +306,7 @@ class WalletTest (BitcoinTestFramework):
|
||||||
# Check that the txid and balance is found by node1
|
# Check that the txid and balance is found by node1
|
||||||
self.nodes[1].gettransaction(cbTxId)
|
self.nodes[1].gettransaction(cbTxId)
|
||||||
|
|
||||||
#check if wallet or blochchain maintenance changes the balance
|
# check if wallet or blockchain maintenance changes the balance
|
||||||
self.sync_all()
|
self.sync_all()
|
||||||
blocks = self.nodes[0].generate(2)
|
blocks = self.nodes[0].generate(2)
|
||||||
self.sync_all()
|
self.sync_all()
|
||||||
|
@ -318,7 +318,8 @@ class WalletTest (BitcoinTestFramework):
|
||||||
'-reindex',
|
'-reindex',
|
||||||
'-zapwallettxes=1',
|
'-zapwallettxes=1',
|
||||||
'-zapwallettxes=2',
|
'-zapwallettxes=2',
|
||||||
'-salvagewallet',
|
# disabled until issue is fixed: https://github.com/bitcoin/bitcoin/issues/7463
|
||||||
|
# '-salvagewallet',
|
||||||
]
|
]
|
||||||
for m in maintenance:
|
for m in maintenance:
|
||||||
print("check " + m)
|
print("check " + m)
|
||||||
|
@ -338,4 +339,4 @@ class WalletTest (BitcoinTestFramework):
|
||||||
assert_equal(len(self.nodes[0].listsinceblock(blocks[1])["transactions"]), 0)
|
assert_equal(len(self.nodes[0].listsinceblock(blocks[1])["transactions"]), 0)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
WalletTest ().main ()
|
WalletTest().main()
|
||||||
|
|
Loading…
Reference in a new issue