Sometimes I try call send method directly i.e. now, I send eth_client.send(:call_payload, ...) to get encoded value for next step.
And @q9f what do you think about it?
Can I rewrite Eth::Client::_child_#send methods to something like send_request?
We also can use object.__send__ method right now, but it's not obvious
Sometimes I try call
send
method directly i.e. now, I sendeth_client.send(:call_payload, ...)
to get encoded value for next step. And @q9f what do you think about it? Can I rewriteEth::Client::_child_#send
methods to something likesend_request
? We also can useobject.__send__
method right now, but it's not obvious