mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-27 05:12:58 +00:00
move eth_hashrate to ext
This commit is contained in:
parent
63c5c7fb2d
commit
9e03c48d43
1 changed files with 2 additions and 2 deletions
|
|
@ -62,8 +62,6 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
|
|||
*reply = newHexData(api.xeth().Coinbase())
|
||||
case "eth_mining":
|
||||
*reply = api.xeth().IsMining()
|
||||
case "eth_hashrate":
|
||||
*reply = newHexNum(api.xeth().HashRate())
|
||||
case "eth_gasPrice":
|
||||
v := xeth.DefaultGas()
|
||||
*reply = newHexData(v.Bytes())
|
||||
|
|
@ -463,6 +461,8 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
|
|||
return err
|
||||
}
|
||||
*reply = api.xeth().Whisper().Messages(args.Id)
|
||||
case "ext_hashrate":
|
||||
*reply = newHexNum(api.xeth().HashRate())
|
||||
|
||||
// case "eth_register":
|
||||
// // Placeholder for actual type
|
||||
|
|
|
|||
Loading…
Reference in a new issue