Commit 41e3d01e authored by Taylor Gerring's avatar Taylor Gerring

Rename eth_Version to eth_protocolVersion. Closes #737

parent 5f6c8832
...@@ -56,7 +56,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err ...@@ -56,7 +56,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
*reply = api.xeth().IsListening() *reply = api.xeth().IsListening()
case "net_peerCount": case "net_peerCount":
*reply = newHexNum(api.xeth().PeerCount()) *reply = newHexNum(api.xeth().PeerCount())
case "eth_version": case "eth_protocolVersion":
*reply = api.xeth().EthVersion() *reply = api.xeth().EthVersion()
case "eth_coinbase": case "eth_coinbase":
*reply = newHexData(api.xeth().Coinbase()) *reply = newHexData(api.xeth().Coinbase())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment