From 4669507880ebc0ccbe149d4e846b2b9371d82392 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Wed, 1 Aug 2018 09:58:06 -0400 Subject: [PATCH] Transaction.abandon() now requires list of outputs --- tests/integration/wallet/test_transactions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/wallet/test_transactions.py b/tests/integration/wallet/test_transactions.py index 49b2cf572..e40be1ba5 100644 --- a/tests/integration/wallet/test_transactions.py +++ b/tests/integration/wallet/test_transactions.py @@ -81,7 +81,7 @@ class BasicTransactionTest(IntegrationTestCase): response = await d2f(self.ledger.resolve(0, 10, 'lbry://@bar/foo')) self.assertIn('lbry://@bar/foo', response) - abandon_tx = await d2f(Transaction.abandon(claim_tx.outputs[0], [self.account], self.account)) + abandon_tx = await d2f(Transaction.abandon([claim_tx.outputs[0]], [self.account], self.account)) await self.broadcast(abandon_tx) await self.on_transaction(abandon_tx) await self.blockchain.generate(1)