Return a disassembled script instead of the hex

This commit is contained in:
obscuren 2014-05-21 15:54:44 +02:00
parent 56c2f651fe
commit e1b7bd51ee
1 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import (
"encoding/hex"
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethutil"
"strings"
)
// Block interface exposed to QML
@ -132,7 +133,7 @@ func (c *PStateObject) IsContract() bool {
func (c *PStateObject) Script() string {
if c.object != nil {
return ethutil.Hex(c.object.Script())
return strings.Join(ethchain.Disassemble(c.object.Script()), " ")
}
return ""