Removed leftover print statements that were used for debugging

This commit is contained in:
Julian Müller (ChaoticByte) 2023-04-17 20:13:34 +02:00
parent 79d148bfd0
commit 6b396dbb50
2 changed files with 0 additions and 7 deletions

View file

@ -150,9 +150,6 @@ def api_transfer(request):
raise Exception(f"User {user.username} tried to transfer to themself.")
amount = decimal.Decimal(request.POST["transferamount"])
if 0.00 < amount <= user.balance:
print("sender:", user.username)
print("recipient:", recipient.username)
print("amount:", amount)
# create transaction
RegisterTransaction.objects.create(
transaction_sum=-amount,