fix for integration test
This commit is contained in:
parent
a234f92d2c
commit
98d83ea74f
1 changed files with 1 additions and 1 deletions
|
@ -757,7 +757,7 @@ class TransactionCommandsTestCase(CommandTestCase):
|
|||
sendtxid = await self.blockchain.send_to_address(change_address, 10)
|
||||
tx = await self.daemon.jsonrpc_transaction_show(sendtxid)
|
||||
self.assertEqual(tx.id, sendtxid)
|
||||
self.assertEqual(tx.height, -1)
|
||||
self.assertEqual(tx.height, -2)
|
||||
await self.generate(1)
|
||||
tx = await self.daemon.jsonrpc_transaction_show(sendtxid)
|
||||
self.assertEqual(tx.height, self.ledger.headers.height)
|
||||
|
|
Loading…
Reference in a new issue