diff --git a/bot.py b/bot.py index e0717ca..16cc611 100644 --- a/bot.py +++ b/bot.py @@ -106,10 +106,7 @@ async def check_fees( ): for from_currency, pairs in current.items(): for to_currency, fee in pairs.items(): - if fee == previous.get(from_currency, {}).get(to_currency, 0): - continue - - if fee < fee_threshold: + if fee < fee_threshold < previous.get(from_currency, {}).get(to_currency, 0): await notify_subscribers( bot, session,