call_eth_tester uses is a curried method. curry doesn't work well with variable arguments. Earlier variable arguments would be passed which would cause some rpc calls to fail
How was it fixed?
determine the exact signature based on the length of the arguments.
What was wrong?
call_eth_tester
uses is a curried method. curry doesn't work well with variable arguments. Earlier variable arguments would be passed which would cause some rpc calls to failHow was it fixed?
determine the exact signature based on the length of the arguments.