Port trades command to async

master
Mark Veidemanis 2 years ago
parent d3b4d3ea21
commit f8521eced3
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

@ -7,6 +7,14 @@ from settings import settings
class GenericCommands(object):
class trades(object):
@staticmethod
def got_trades(trades, msg):
if not trades:
msg("No open trades.")
return
for trade_id in trades:
msg(trade_id)
@staticmethod
def run(cmd, spl, length, authed, msg, agora, tx, ux, caller):
"""
@ -14,12 +22,7 @@ class GenericCommands(object):
"""
trades = caller.get_dashboard_irc()
if not trades:
msg("No open trades.")
return
for trade_id in trades:
msg(trade_id)
trades.addCallback(GenericCommands.trades.got_trades, msg)
class create(object):
@staticmethod

Loading…
Cancel
Save