From 997dd3651cc801258d4222c1b21d5a6e1992b8b7 Mon Sep 17 00:00:00 2001 From: banteg <4562643+banteg@users.noreply.github.com> Date: Fri, 29 Mar 2024 22:30:34 +0400 Subject: [PATCH] fix: debug print --- src/ape_ethereum/multicall/handlers.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ape_ethereum/multicall/handlers.py b/src/ape_ethereum/multicall/handlers.py index 87547dda01..f86dcfb192 100644 --- a/src/ape_ethereum/multicall/handlers.py +++ b/src/ape_ethereum/multicall/handlers.py @@ -177,7 +177,6 @@ def add(self, call: ContractMethodHandler, *args, **kwargs): @property def returnData(self) -> List[HexBytes]: # NOTE: this property is kept camelCase to align with the raw EVM struct - print(self._result) result = self._result # Declare for typing reasons. return [res.returnData if res.success else None for res in result] # type: ignore