Finish implementation and tests for the cheat system #3

Closed
m wants to merge 67 commits from cheat-refactor into master
1 changed files with 7 additions and 2 deletions
Showing only changes of commit 725eb89f27 - Show all commits

View File

@ -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)