From b800139bcf5b0bee8135fd535f095ce1362afd14 Mon Sep 17 00:00:00 2001 From: Mark Veidemanis Date: Sun, 12 Mar 2023 12:56:12 +0000 Subject: [PATCH] Remove print statement --- core/clients/platform.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/core/clients/platform.py b/core/clients/platform.py index 4faeec0..61e174e 100644 --- a/core/clients/platform.py +++ b/core/clients/platform.py @@ -862,17 +862,6 @@ class LocalPlatformClient(ABC): Store details in Redis, generate a reference and optionally let the customer know the reference. """ - print( - "NEW TRADE", - asset, - trade_id, - buyer, - currency, - amount, - amount_crypto, - provider, - ad_id, - ) reference = "".join(choices(ascii_uppercase, k=5)) reference = f"AGR-{reference}" existing_ref = await db.r.get(f"trade.{trade_id}.reference")