Libraries refactor and add some sinks #4
|
@ -473,7 +473,7 @@ class IRCCommands(object):
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def run(cmd, spl, length, authed, msg, agora, revolut, tx, notify):
|
def run(cmd, spl, length, authed, msg, agora, revolut, tx, notify):
|
||||||
total = tx.get_profit()
|
total = tx.money.get_profit()
|
||||||
msg(f"Profit: {total}USD")
|
msg(f"Profit: {total}USD")
|
||||||
|
|
||||||
class tprofit(object):
|
class tprofit(object):
|
||||||
|
@ -483,5 +483,5 @@ class IRCCommands(object):
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def run(cmd, spl, length, authed, msg, agora, revolut, tx, notify):
|
def run(cmd, spl, length, authed, msg, agora, revolut, tx, notify):
|
||||||
total = tx.get_profit(True)
|
total = tx.money.get_profit(True)
|
||||||
msg(f"Profit: {total}USD")
|
msg(f"Profit: {total}USD")
|
||||||
|
|
Loading…
Reference in New Issue