File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -177,15 +177,15 @@ def _inner_call(
177
177
except Exception :
178
178
if len (calls_with_calldata ) == 1 :
179
179
try :
180
- raw_returns , gas_usages = exponential_retry ( func_name = "multicall" )( func = self ._call_multicall ) (
180
+ raw_returns , gas_usages = self ._call_multicall (
181
181
multicall_call = multicall_call ,
182
182
use_revert = use_revert ,
183
183
retry = self .w3 .should_retry ,
184
- no_retry = not self .w3 .should_retry ,
185
184
state_override = state_override ,
186
185
block_identifier = block_identifier
187
186
)
188
187
except Exception as e :
188
+ print (f"Single multicall to 0x{ calls_with_calldata [0 ][0 ].address .hex ()} and func { calls_with_calldata [0 ][0 ].signature } got Error: { repr (e )} " )
189
189
raw_returns = [e ]
190
190
gas_usages = [None ]
191
191
else :
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
- VERSION = '0.1.62 '
3
+ VERSION = '0.1.63 '
4
4
DESCRIPTION = 'IceCreamSwap Web3.py wrapper'
5
5
LONG_DESCRIPTION = 'IceCreamSwap Web3.py wrapper with automatic retries, multicall and other advanced functionality'
6
6
You can’t perform that action at this time.
0 commit comments