mirror of
https://git.wownero.com/lza_menace/wownero-python.git
synced 2024-08-15 03:25:25 +00:00
Fix: use proper class; add comment on pending PR
This commit is contained in:
parent
e0052d71e8
commit
aa155b0520
2 changed files with 8 additions and 6 deletions
|
@ -163,8 +163,9 @@ class SubaddrWalletTestCase(unittest.TestCase):
|
|||
pay_in = self.wallet.get_transactions_in()
|
||||
self.assertEqual(len(list(pay_in)), 3)
|
||||
for tx in pay_in:
|
||||
self.assertIsInstance(tx, Transaction)
|
||||
# self.assertIsInstance(tx.address, Address)
|
||||
self.assertIsInstance(tx, Payment)
|
||||
# Once PR#3010 has been merged to Monero, update the JSON and enable the following:
|
||||
# self.assertIsInstance(tx.local_address, Address)
|
||||
self.assertIsInstance(tx.amount, Decimal)
|
||||
self.assertIsInstance(tx.fee, Decimal)
|
||||
|
||||
|
@ -257,8 +258,9 @@ class SubaddrWalletTestCase(unittest.TestCase):
|
|||
pay_out = self.wallet.get_transactions_out()
|
||||
self.assertEqual(len(list(pay_out)), 6)
|
||||
for tx in pay_out:
|
||||
self.assertIsInstance(tx, Transaction)
|
||||
# self.assertIsInstance(tx.address, Address)
|
||||
self.assertIsInstance(tx, Transfer)
|
||||
# Once PR#3010 has been merged to Monero, update the JSON and enable the following:
|
||||
# self.assertIsInstance(tx.local_address, Address)
|
||||
self.assertIsInstance(tx.amount, Decimal)
|
||||
self.assertIsInstance(tx.fee, Decimal)
|
||||
self.assertIsInstance(tx.timestamp, datetime)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue