diff options
author | MarcoFalke <falke.marco@gmail.com> | 2016-05-10 17:22:01 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-05-10 18:09:18 +0200 |
commit | fa83a5dbce0b76e78744c9ad5578c93e89b123e5 (patch) | |
tree | 6e568ec75df771b8f73422f23b2f817674670910 /qa/rpc-tests/wallet.py | |
parent | fadd0485922de94720dfe60c859633041d67b22f (diff) |
[qa] wallet: Temporarily disable salvagewallet test
Diffstat (limited to 'qa/rpc-tests/wallet.py')
-rwxr-xr-x | qa/rpc-tests/wallet.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/qa/rpc-tests/wallet.py b/qa/rpc-tests/wallet.py index 42ce0a7260..f321f5e90b 100755 --- a/qa/rpc-tests/wallet.py +++ b/qa/rpc-tests/wallet.py @@ -306,7 +306,7 @@ class WalletTest (BitcoinTestFramework): # 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() @@ -318,7 +318,8 @@ class WalletTest (BitcoinTestFramework): '-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) @@ -338,4 +339,4 @@ class WalletTest (BitcoinTestFramework): assert_equal(len(self.nodes[0].listsinceblock(blocks[1])["transactions"]), 0) if __name__ == '__main__': - WalletTest ().main () + WalletTest().main() |