aboutsummaryrefslogtreecommitdiffstats
path: root/ethstate
diff options
context:
space:
mode:
Diffstat (limited to 'ethstate')
-rw-r--r--ethstate/state_object.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethstate/state_object.go b/ethstate/state_object.go
index d8513f37d..6b00c5369 100644
--- a/ethstate/state_object.go
+++ b/ethstate/state_object.go
@@ -11,7 +11,7 @@ import (
type Code []byte
func (self Code) String() string {
- return "" //strings.Join(Disassemble(self), " ")
+ return string(self) //strings.Join(Disassemble(self), " ")
}
type Storage map[string]*ethutil.Value