Finish implementation and tests for the cheat system #3
|
@ -123,7 +123,12 @@ class Agora(object):
|
|||
current_trades.append(reference)
|
||||
buyer = contact["data"]["buyer"]["username"]
|
||||
amount = contact["data"]["amount"]
|
||||
amount_xmr = contact["data"]["amount_xmr"]
|
||||
if "amount_xmr" in contact["data"]:
|
||||
amount_crypto = contact["data"]["amount_xmr"]
|
||||
crypto = "XMR"
|
||||
elif "amount_btc" in contact["data"]:
|
||||
amount_crypto = contact["data"]["amount_btc"]
|
||||
crypto = "BTC"
|
||||
currency = contact["data"]["currency"]
|
||||
if not contact["data"]["is_selling"]:
|
||||
continue
|
||||
|
@ -133,7 +138,7 @@ class Agora(object):
|
|||
if reference not in current_trades:
|
||||
current_trades.append(reference)
|
||||
# Let us know there is a new trade
|
||||
self.irc.sendmsg(f"AUTO {reference}: {buyer} {amount}{currency} {amount_xmr}XMR")
|
||||
self.irc.sendmsg(f"AUTO {reference}: {buyer} {amount}{currency} {amount_crypto}{crypto}")
|
||||
# Note that we have seen this reference
|
||||
self.last_dash.add(reference)
|
||||
|
||||
|
|
Loading…
Reference in New Issue