aboutsummaryrefslogtreecommitdiffstats
path: root/xeth
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-12-19 03:26:19 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-12-19 03:26:19 +0800
commitdbbcf558e2c4ccb4556ba62d07204c25ddcb4783 (patch)
treec80eb767d4e4d38486688997318906e5396e5c93 /xeth
parent4811409e99e87cd8862a9813422d61fc0f752d18 (diff)
parente6fb69296e647ff305e5d9df059e5aa956303538 (diff)
downloadgo-tangerine-dbbcf558e2c4ccb4556ba62d07204c25ddcb4783.tar
go-tangerine-dbbcf558e2c4ccb4556ba62d07204c25ddcb4783.tar.gz
go-tangerine-dbbcf558e2c4ccb4556ba62d07204c25ddcb4783.tar.bz2
go-tangerine-dbbcf558e2c4ccb4556ba62d07204c25ddcb4783.tar.lz
go-tangerine-dbbcf558e2c4ccb4556ba62d07204c25ddcb4783.tar.xz
go-tangerine-dbbcf558e2c4ccb4556ba62d07204c25ddcb4783.tar.zst
go-tangerine-dbbcf558e2c4ccb4556ba62d07204c25ddcb4783.zip
Merge pull request #2064 from fjl/remove-common-rlp
common: remove old RLP implementation, Value and ExtPackage
Diffstat (limited to 'xeth')
-rw-r--r--xeth/types.go4
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()
}