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
I recognize if an abi file for a contract contains two functions with the same name (function overloading) the first function can't be called.
eth-js throws an error because it is using only the second function definition in the abi file. (Therefore a types/values mismatch error is thrown if the first function with the same name is called.)
Reordering the functions in the abi file results in the opposite behaviour.
The text was updated successfully, but these errors were encountered:
I recognize if an abi file for a contract contains two functions with the same name (function overloading) the first function can't be called.
eth-js
throws an error because it is using only the second function definition in the abi file. (Therefore a types/values mismatch error is thrown if the first function with the same name is called.)Reordering the functions in the abi file results in the opposite behaviour.
The text was updated successfully, but these errors were encountered: