voith / eth-tester-rpc

Rewrite of piper merriams eth-testrpc
MIT License
3 stars 3 forks source link

fixed rpc calls delegated to eth_tester #7

Closed voith closed 6 years ago

voith commented 6 years ago

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 fail

How was it fixed?

determine the exact signature based on the length of the arguments.