aboutsummaryrefslogtreecommitdiffstats
path: root/vm/environment.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-04 00:29:08 +0800
committerobscuren <geffobscura@gmail.com>2015-01-04 00:29:08 +0800
commitbd0c267cbe9db805b5a272d29ef8860c62ddafe5 (patch)
treea4ee41c78f56ba443e74ffc46875a88895c84647 /vm/environment.go
parentca1b2a1a91401255ab4e26cec7eb575b99ecb8da (diff)
downloadgo-tangerine-bd0c267cbe9db805b5a272d29ef8860c62ddafe5.tar.gz
go-tangerine-bd0c267cbe9db805b5a272d29ef8860c62ddafe5.tar.zst
go-tangerine-bd0c267cbe9db805b5a272d29ef8860c62ddafe5.zip
Cleanup old code
Diffstat (limited to 'vm/environment.go')
-rw-r--r--vm/environment.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/vm/environment.go b/vm/environment.go
index d8b1cef28..8ec13ee41 100644
--- a/vm/environment.go
+++ b/vm/environment.go
@@ -30,11 +30,6 @@ type Environment interface {
Create(me ContextRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error, ContextRef)
}
-type Object interface {
- GetStorage(key *big.Int) *ethutil.Value
- SetStorage(key *big.Int, value *ethutil.Value)
-}
-
type Account interface {
SubBalance(amount *big.Int)
AddBalance(amount *big.Int)