Libraries refactor and add some sinks #4
|
@ -123,7 +123,12 @@ class Agora(object):
|
||||||
current_trades.append(reference)
|
current_trades.append(reference)
|
||||||
buyer = contact["data"]["buyer"]["username"]
|
buyer = contact["data"]["buyer"]["username"]
|
||||||
amount = contact["data"]["amount"]
|
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"]
|
currency = contact["data"]["currency"]
|
||||||
if not contact["data"]["is_selling"]:
|
if not contact["data"]["is_selling"]:
|
||||||
continue
|
continue
|
||||||
|
@ -133,7 +138,7 @@ class Agora(object):
|
||||||
if reference not in current_trades:
|
if reference not in current_trades:
|
||||||
current_trades.append(reference)
|
current_trades.append(reference)
|
||||||
# Let us know there is a new trade
|
# 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
|
# Note that we have seen this reference
|
||||||
self.last_dash.add(reference)
|
self.last_dash.add(reference)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue