Output 0x0 instead of 0x

pull/444/head
Taylor Gerring 10 years ago
parent 9b0f00baf3
commit 1576551741
  1. 7
      rpc/util.go

@ -63,7 +63,12 @@ func (self JsonWrapper) ParseRequestBody(req *http.Request) (RpcRequest, error)
}
func toHex(b []byte) string {
return "0x" + ethutil.Bytes2Hex(b)
hex := ethutil.Bytes2Hex(b)
// Prefer output of "0x0" instead of "0x"
if len(hex) == 0 {
hex = "0"
}
return "0x" + hex
}
func fromHex(s string) []byte {
if len(s) > 1 {

Loading…
Cancel
Save