aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ethpub/types.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/ethpub/types.go b/ethpub/types.go
index afec47fdc..7194de372 100644
--- a/ethpub/types.go
+++ b/ethpub/types.go
@@ -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 ""