diff options
Diffstat (limited to 'xeth/types.go')
-rw-r--r-- | xeth/types.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/xeth/types.go b/xeth/types.go index 218c8dc7c..090115b7e 100644 --- a/xeth/types.go +++ b/xeth/types.go @@ -47,10 +47,6 @@ func (self *Object) StorageString(str string) []byte { } } -func (self *Object) StorageValue(addr *common.Value) []byte { - return self.storage(addr.Bytes()) -} - func (self *Object) storage(addr []byte) []byte { return self.StateObject.GetState(common.BytesToHash(addr)).Bytes() } |