From eba071dcbba0a8135b851b6227513eee864c8b9c Mon Sep 17 00:00:00 2001 From: endogen <081081@gmx.net> Date: Tue, 14 May 2024 00:33:48 +0200 Subject: [PATCH] Remove debug logging --- contracting/execution/executor.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/contracting/execution/executor.py b/contracting/execution/executor.py index e515e17a..c0e3a167 100644 --- a/contracting/execution/executor.py +++ b/contracting/execution/executor.py @@ -80,12 +80,6 @@ def execute(self, sender, contract_name, function_name, kwargs, if balance is None: balance = 0 - logger.debug({ - 'balance': balance, - 'stamp_cost': stamp_cost, - 'stamps': stamps - }) - assert balance * stamp_cost >= stamps, (f'Sender does not have enough stamps for the transaction. ' f'Balance at key {balances_key} is {balance}')