Added hex script method

pull/150/head
obscuren 10 years ago
parent 842d52db7b
commit 8c96c5662f
  1. 8
      ethpub/types.go

@ -244,6 +244,14 @@ func (c *PStateObject) Script() string {
return "" return ""
} }
func (c *PStateObject) HexScript() string {
if c.object != nil {
return ethutil.Hex(c.object.Script())
}
return ""
}
type PStorageState struct { type PStorageState struct {
StateAddress string StateAddress string
Address string Address string

Loading…
Cancel
Save