diff --git a/fastlane_bot/config/multicaller.py b/fastlane_bot/config/multicaller.py index 4087d792a..754555177 100644 --- a/fastlane_bot/config/multicaller.py +++ b/fastlane_bot/config/multicaller.py @@ -119,8 +119,7 @@ def __enter__(self) -> 'MultiCaller': return self def __exit__(self, exc_type, exc_val, exc_tb): - if exc_type is None: - self.multicall() + pass def add_call(self, fn: Callable, *args, **kwargs) -> None: self._contract_calls.append(partial(fn, *args, **kwargs))