mirror of https://github.com/status-im/op-geth.git
rpc: change eth_protocolVersion to eth_version. Closes #714
This commit is contained in:
parent
13eb46ea94
commit
8db7b2374c
|
@ -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_protocolVersion":
|
||||
case "eth_version":
|
||||
*reply = api.xeth().EthVersion()
|
||||
case "eth_coinbase":
|
||||
*reply = newHexData(api.xeth().Coinbase())
|
||||
|
|
Loading…
Reference in New Issue