fix internal transaction api test

This commit is contained in:
Lex Berezhny 2019-03-25 22:32:34 -04:00
parent 51bb8fd283
commit ea4444edbe

View file

@ -4,7 +4,7 @@ from torba.testcase import IntegrationTestCase
import lbrynet.wallet import lbrynet.wallet
from lbrynet.schema.claim import Claim from lbrynet.schema.claim import Claim
from lbrynet.wallet.transaction import Transaction, Output from lbrynet.wallet.transaction import Transaction, Output, Input
from lbrynet.wallet.dewies import dewies_to_lbc as d2l, lbc_to_dewies as l2d from lbrynet.wallet.dewies import dewies_to_lbc as d2l, lbc_to_dewies as l2d
@ -63,7 +63,7 @@ class BasicTransactionTest(IntegrationTestCase):
self.assertIn('lbry://@bar/foo', response) self.assertIn('lbry://@bar/foo', response)
self.assertIn('claim', response['lbry://@bar/foo']) self.assertIn('claim', response['lbry://@bar/foo'])
abandon_tx = await Transaction.abandon([stream_tx.outputs[0]], [self.account], self.account) abandon_tx = await Transaction.create([Input.spend(stream_tx.outputs[0])], [], [self.account], self.account)
await self.broadcast(abandon_tx) await self.broadcast(abandon_tx)
await self.ledger.wait(abandon_tx) await self.ledger.wait(abandon_tx)
await self.blockchain.generate(1) await self.blockchain.generate(1)