From 294e6b0e77a2eb1a3bea900f31a9b8ce3836c561 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Mon, 9 May 2022 08:25:10 +0100 Subject: [PATCH] Don't require BTC balance argument for topup notification --- handler/ux/notify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/handler/ux/notify.py b/handler/ux/notify.py index 2348700..cf0caca 100644 --- a/handler/ux/notify.py +++ b/handler/ux/notify.py @@ -51,9 +51,9 @@ class Notify(util.Base): priority="4", ) - def notify_need_topup(self, amount_usd_xmr, amount_usd_btc): + def notify_need_topup(self, amount_usd_xmr): self.sendmsg( - f"XMR: {amount_usd_xmr} | BTC: {amount_usd_btc}", + f"XMR: {amount_usd_xmr}", title="Topup needed", tags="admin", priority="5",