forked from LBRYCommunity/lbry-sdk
more checks on test_transactions
This commit is contained in:
parent
fcd46629c4
commit
ff8d37443e
1 changed files with 3 additions and 2 deletions
|
@ -80,6 +80,7 @@ class BasicTransactionTest(IntegrationTestCase):
|
|||
|
||||
response = await d2f(self.ledger.resolve(0, 10, 'lbry://@bar/foo'))
|
||||
self.assertIn('lbry://@bar/foo', response)
|
||||
self.assertIn('claim', response['lbry://@bar/foo'])
|
||||
|
||||
abandon_tx = await d2f(Transaction.abandon([claim_tx.outputs[0]], [self.account], self.account))
|
||||
await self.broadcast(abandon_tx)
|
||||
|
@ -88,5 +89,5 @@ class BasicTransactionTest(IntegrationTestCase):
|
|||
await self.on_transaction(abandon_tx)
|
||||
|
||||
# should not resolve, but does, why?
|
||||
# response = await d2f(self.ledger.resolve(0, 10, 'lbry://@bar/foo'))
|
||||
# self.assertNotIn('lbry://@bar/foo', response)
|
||||
response = await d2f(self.ledger.resolve(0, 10, 'lbry://@bar/foo'))
|
||||
self.assertNotIn('claim', response['lbry://@bar/foo'])
|
||||
|
|
Loading…
Reference in a new issue