Fix duplicate leading 0x
This commit is contained in:
parent
4142708d9d
commit
2a7ca69a82
@ -525,7 +525,7 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
|
||||
}
|
||||
return p.AllLogs(args, reply)
|
||||
case "eth_gasPrice":
|
||||
*reply = "0x" + toHex(p.defaultGasPrice.Bytes())
|
||||
*reply = toHex(p.defaultGasPrice.Bytes())
|
||||
return nil
|
||||
case "eth_register":
|
||||
args, err := req.ToRegisterArgs()
|
||||
|
Loading…
Reference in New Issue
Block a user