forked from forks/go-ethereum
Added hex script method
This commit is contained in:
parent
842d52db7b
commit
8c96c5662f
1 changed files with 8 additions and 0 deletions
|
|
@ -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…
Reference in a new issue