Minor improvements and fixes to the new vm structure

This commit is contained in:
obscuren
2014-07-22 15:57:54 +02:00
parent 1e8b54abfb
commit 490ca410c0
6 changed files with 18 additions and 24 deletions

View File

@@ -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