aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/vm_env.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-07-24 18:04:15 +0800
committerobscuren <geffobscura@gmail.com>2014-07-24 18:04:15 +0800
commit32d125131f602d63f66ee7eb09439074f0b94a91 (patch)
treede8cdb558d390f8200962af2d24d4402b6762409 /ethchain/vm_env.go
parent958b482ada677028e11698c219ed5b1e70b224e6 (diff)
downloaddexon-32d125131f602d63f66ee7eb09439074f0b94a91.tar
dexon-32d125131f602d63f66ee7eb09439074f0b94a91.tar.gz
dexon-32d125131f602d63f66ee7eb09439074f0b94a91.tar.bz2
dexon-32d125131f602d63f66ee7eb09439074f0b94a91.tar.lz
dexon-32d125131f602d63f66ee7eb09439074f0b94a91.tar.xz
dexon-32d125131f602d63f66ee7eb09439074f0b94a91.tar.zst
dexon-32d125131f602d63f66ee7eb09439074f0b94a91.zip
Refactored to new state and vm
Diffstat (limited to 'ethchain/vm_env.go')
-rw-r--r--ethchain/vm_env.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/ethchain/vm_env.go b/ethchain/vm_env.go
new file mode 100644
index 000000000..711cfbe9f
--- /dev/null
+++ b/ethchain/vm_env.go
@@ -0,0 +1,28 @@
+package ethchain
+
+import (
+ "github.com/ethereum/eth-go/ethstate"
+ "math/big"
+)
+
+type VMEnv struct {
+ state *ethstate.State
+ block *Block
+ tx *Transaction
+}
+
+func NewEnv(state *ethstate.State, tx *Transaction, block *Block) *VMEnv {
+ return &VMEnv{
+ state: state,
+ block: block,
+ }
+}
+
+func (self *VMEnv) Origin() []byte { return self.tx.Sender() }
+func (self *VMEnv) BlockNumber() *big.Int { return self.block.Number }
+func (self *VMEnv) PrevHash() []byte { return self.block.PrevHash }
+func (self *VMEnv) Coinbase() []byte { return self.block.Coinbase }
+func (self *VMEnv) Time() int64 { return self.block.Time }
+func (self *VMEnv) Difficulty() *big.Int { return self.block.Difficulty }
+func (self *VMEnv) Value() *big.Int { return self.tx.Value }
+func (self *VMEnv) State() *ethstate.State { return self.state }