Skip to content

Commit fa83a5d

Browse files
author
MarcoFalke
committed
[qa] wallet: Temporarily disable salvagewallet test
1 parent fadd048 commit fa83a5d

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

qa/rpc-tests/wallet.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def run_test (self):
306306
# Check that the txid and balance is found by node1
307307
self.nodes[1].gettransaction(cbTxId)
308308

309-
#check if wallet or blochchain maintenance changes the balance
309+
# check if wallet or blockchain maintenance changes the balance
310310
self.sync_all()
311311
blocks = self.nodes[0].generate(2)
312312
self.sync_all()
@@ -318,7 +318,8 @@ def run_test (self):
318318
'-reindex',
319319
'-zapwallettxes=1',
320320
'-zapwallettxes=2',
321-
'-salvagewallet',
321+
# disabled until issue is fixed: https://github.com/bitcoin/bitcoin/issues/7463
322+
# '-salvagewallet',
322323
]
323324
for m in maintenance:
324325
print("check " + m)
@@ -338,4 +339,4 @@ def run_test (self):
338339
assert_equal(len(self.nodes[0].listsinceblock(blocks[1])["transactions"]), 0)
339340

340341
if __name__ == '__main__':
341-
WalletTest ().main ()
342+
WalletTest().main()

0 commit comments

Comments
 (0)