You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today etherplex supports batching multiple calls to the same contract and it constructs a return object of the form result[call.caller.__name][call.fd.name] = result. The problem with this is that it writes over previous calls to the same function.
Today etherplex supports batching multiple calls to the same contract and it constructs a return object of the form
result[call.caller.__name][call.fd.name] = result
. The problem with this is that it writes over previous calls to the same function.Example code to reproduce the issue:
Would result in a single element array
The text was updated successfully, but these errors were encountered: