quorum/chain/vm_env.go

40 lines
1.2 KiB
Go
Raw Normal View History

2014-10-31 02:59:17 -07:00
package chain
2014-07-24 03:04:15 -07:00
import (
"math/big"
2014-08-11 07:23:38 -07:00
"github.com/ethereum/go-ethereum/ethstate"
"github.com/ethereum/go-ethereum/vm"
2014-07-24 03:04:15 -07:00
)
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,
2014-07-24 03:10:18 -07:00
tx: tx,
2014-07-24 03:04:15 -07:00
}
}
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 }
2014-08-11 07:23:38 -07:00
func (self *VMEnv) BlockHash() []byte { return self.block.Hash() }
2014-07-24 03:04:15 -07:00
func (self *VMEnv) Value() *big.Int { return self.tx.Value }
func (self *VMEnv) State() *ethstate.State { return self.state }
2014-10-16 09:27:05 -07:00
func (self *VMEnv) GasLimit() *big.Int { return self.block.GasLimit }
func (self *VMEnv) AddLog(log ethstate.Log) {
self.state.AddLog(log)
2014-10-27 03:44:16 -07:00
}
func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) error {
return vm.Transfer(from, to, amount)
}