diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-04 00:29:08 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-04 00:29:08 +0800 |
commit | bd0c267cbe9db805b5a272d29ef8860c62ddafe5 (patch) | |
tree | a4ee41c78f56ba443e74ffc46875a88895c84647 /vm/context.go | |
parent | ca1b2a1a91401255ab4e26cec7eb575b99ecb8da (diff) | |
download | dexon-bd0c267cbe9db805b5a272d29ef8860c62ddafe5.tar.gz dexon-bd0c267cbe9db805b5a272d29ef8860c62ddafe5.tar.zst dexon-bd0c267cbe9db805b5a272d29ef8860c62ddafe5.zip |
Cleanup old code
Diffstat (limited to 'vm/context.go')
-rw-r--r-- | vm/context.go | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/vm/context.go b/vm/context.go index ccbadabda..d995c92c7 100644 --- a/vm/context.go +++ b/vm/context.go @@ -5,7 +5,6 @@ import ( "math/big" "github.com/ethereum/go-ethereum/ethutil" - "github.com/ethereum/go-ethereum/state" ) type ContextRef interface { @@ -15,10 +14,9 @@ type ContextRef interface { } type Context struct { - caller ContextRef - object ContextRef - Code []byte - message *state.Message + caller ContextRef + object ContextRef + Code []byte Gas, UsedGas, Price *big.Int @@ -26,8 +24,8 @@ type Context struct { } // Create a new context for the given data items -func NewContext(msg *state.Message, caller ContextRef, object ContextRef, code []byte, gas, price *big.Int) *Context { - c := &Context{message: msg, caller: caller, object: object, Code: code, Args: nil} +func NewContext(caller ContextRef, object ContextRef, code []byte, gas, price *big.Int) *Context { + c := &Context{caller: caller, object: object, Code: code, Args: nil} // Gas should be a pointer so it can safely be reduced through the run // This pointer will be off the state transition |