Merge pull request #784 from tgerring/issue737

Rename eth_Version to eth_protocolVersion. Closes #737
This commit is contained in:
Jeffrey Wilcke 2015-04-23 02:05:20 -07:00
commit 69788cb973
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
*reply = api.xeth().IsListening()
case "net_peerCount":
*reply = newHexNum(api.xeth().PeerCount())
case "eth_version":
case "eth_protocolVersion":
*reply = api.xeth().EthVersion()
case "eth_coinbase":
*reply = newHexData(api.xeth().Coinbase())