aboutsummaryrefslogtreecommitdiffstats
path: root/ethstate
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-07-22 21:57:54 +0800
committerobscuren <geffobscura@gmail.com>2014-07-22 21:57:54 +0800
commit490ca410c01a1b8076214d00c21d2edf09c24f86 (patch)
tree9c206ffda9dcfc723ea25b26809a7371b08d328d /ethstate
parent1e8b54abfb7129fcdf4812ad01b6a7cd61e4f65d (diff)
downloaddexon-490ca410c01a1b8076214d00c21d2edf09c24f86.tar.gz
dexon-490ca410c01a1b8076214d00c21d2edf09c24f86.tar.zst
dexon-490ca410c01a1b8076214d00c21d2edf09c24f86.zip
Minor improvements and fixes to the new vm structure
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