mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-03 10:03:47 +00:00
uses newHexNum for eth_hashrate
This commit is contained in:
parent
41b83fe1cd
commit
63c5c7fb2d
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err
|
|||
case "eth_mining":
|
||||
*reply = api.xeth().IsMining()
|
||||
case "eth_hashrate":
|
||||
*reply = api.xeth().HashRate()
|
||||
*reply = newHexNum(api.xeth().HashRate())
|
||||
case "eth_gasPrice":
|
||||
v := xeth.DefaultGas()
|
||||
*reply = newHexData(v.Bytes())
|
||||
|
|
|
|||
Loading…
Reference in a new issue