diff --git a/billing/views.py b/billing/views.py index be9f7a7..435ed68 100644 --- a/billing/views.py +++ b/billing/views.py @@ -383,9 +383,7 @@ class VerifyTopupPaymentAPIView(StaffEditorPermissionMixin, generics.UpdateAPIVi "benefName": f"{user.first_name} {user.last_name}", # type: ignore "accountNo": user.acc_no, # type: ignore "absAmount": topup_instance.amount, - "time": localtime( - topup_instance.created_at + timedelta(minutes=5) - ).strftime("%Y-%m-%d %H:%M"), + "time": localtime(topup_instance.created_at).strftime("%Y-%m-%d %H:%M"), } logger.info( f"Verifying topup payment created at {topup_instance.created_at} with data: {data}"