Update dashboard getter to understand BTC
This commit is contained in:
parent
50e114cf90
commit
90b0c6fa70
|
@ -95,11 +95,16 @@ class Agora(object):
|
|||
reference = self.tx.tx_to_ref(contact_id)
|
||||
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
|
||||
rtrn.append(f"{reference}: {buyer} {amount}{currency} {amount_xmr}XMR")
|
||||
rtrn.append(f"{reference}: {buyer} {amount}{currency} {amount_crypto}{crypto}")
|
||||
return rtrn
|
||||
|
||||
def dashboard_hook(self, dash):
|
||||
|
|
Loading…
Reference in New Issue