Fix tx state display in lists.

selectable address for send_from.
This commit is contained in:
tecnovert
2019-07-28 21:57:20 +02:00
parent 18ee89361a
commit 4bc0ec98eb
8 changed files with 162 additions and 76 deletions

View File

@@ -338,7 +338,7 @@ class Test(unittest.TestCase):
time.sleep(1)
bids = swap_client.listBids()
for bid in bids:
if bid.bid_id == bid_id and bid.was_received:
if bid[1] == bid_id and int(bid[5]) == 1:
return
raise ValueError('wait_for_bid timed out.')