Browse Source

fix commision

master
gsd 10 months ago
parent
commit
3dce85d4ae
  1. 2
      Dockerfile
  2. 5
      paybot.facti13.py

2
Dockerfile

@ -1,5 +1,5 @@
FROM python:3.10 FROM python:3.10
RUN python -m pip install git+https://git.pblr-nyk.pro/gsd/Donation-Alerts-API-Python git+https://github.com/miguelgrinberg/python-socketio aiohttp websocket-client websockets RUN python -m pip install git+https://git.pblr-nyk.pro/gsd/Donation-Alerts-API-Python git+https://git.pblr-nyk.pro/mirror/miguelgrinberg.python-socketio aiohttp websocket-client websockets
ENV PYTHONUNBUFFERED 1 ENV PYTHONUNBUFFERED 1
WORKDIR /app WORKDIR /app
COPY ./ ./ COPY ./ ./

5
paybot.facti13.py

@ -38,10 +38,7 @@ class CustomAlerts(Alert):
money = event.amount money = event.amount
uid = event.id uid = event.id
if event.additional_data.get('is_commission_covered', 0): seconds = self.price_checker(money, event.additional_data.get('is_commission_covered', 0))
seconds = self.price_checker(money, False)
else:
seconds = self.price_checker(money, True)
if seconds == 0: if seconds == 0:
warning(f"[{uid}] so smol donate {money} RUB") warning(f"[{uid}] so smol donate {money} RUB")

Loading…
Cancel
Save