Skip to content

Commit

Permalink
[qa] wallet: Temporarily disable salvagewallet test
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoFalke committed May 10, 2016
1 parent fadd048 commit fa83a5d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions qa/rpc-tests/wallet.py
Expand Up @@ -306,7 +306,7 @@ def run_test (self):
# Check that the txid and balance is found by node1
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()
blocks = self.nodes[0].generate(2)
self.sync_all()
Expand All @@ -318,7 +318,8 @@ def run_test (self):
'-reindex',
'-zapwallettxes=1',
'-zapwallettxes=2',
'-salvagewallet',
# disabled until issue is fixed: https://github.com/bitcoin/bitcoin/issues/7463
# '-salvagewallet',
]
for m in maintenance:
print("check " + m)
Expand All @@ -338,4 +339,4 @@ def run_test (self):
assert_equal(len(self.nodes[0].listsinceblock(blocks[1])["transactions"]), 0)

if __name__ == '__main__':
WalletTest ().main ()
WalletTest().main()

0 comments on commit fa83a5d

Please sign in to comment.