diff options
author | Felix Lange <fjl@twurst.com> | 2015-12-11 08:33:45 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-12-18 19:09:10 +0800 |
commit | e6fb69296e647ff305e5d9df059e5aa956303538 (patch) | |
tree | 4af2d5237abf01ebe7ab35825266775aa7f76400 /xeth | |
parent | 1b89bd5d269d2d85a7c72067e18212135d8757f9 (diff) | |
download | go-tangerine-e6fb69296e647ff305e5d9df059e5aa956303538.tar.gz go-tangerine-e6fb69296e647ff305e5d9df059e5aa956303538.tar.zst go-tangerine-e6fb69296e647ff305e5d9df059e5aa956303538.zip |
common: remove old RLP implementation, Value and ExtPackage
In order to make this happen, kill all remaining trivial uses of
common/{rlp,value}.go. The non-trivial ones have been updated earlier.
Diffstat (limited to 'xeth')
-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() } |