mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-16 04:56:36 +00:00
cmd/evm: implements vm.Environment
This commit is contained in:
parent
cf3aabb9d3
commit
f249ccaa89
1 changed files with 7 additions and 0 deletions
|
|
@ -104,6 +104,7 @@ type VMEnv struct {
|
||||||
depth int
|
depth int
|
||||||
Gas *big.Int
|
Gas *big.Int
|
||||||
time int64
|
time int64
|
||||||
|
logs []vm.StructLog
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewEnv(state *state.StateDB, transactor common.Address, value *big.Int) *VMEnv {
|
func NewEnv(state *state.StateDB, transactor common.Address, value *big.Int) *VMEnv {
|
||||||
|
|
@ -133,6 +134,12 @@ func (self *VMEnv) GetHash(n uint64) common.Hash {
|
||||||
}
|
}
|
||||||
return common.Hash{}
|
return common.Hash{}
|
||||||
}
|
}
|
||||||
|
func (self *VMEnv) AddStructLog(log vm.StructLog) {
|
||||||
|
self.logs = append(self.logs, log)
|
||||||
|
}
|
||||||
|
func (self *VMEnv) StructLogs() []vm.StructLog {
|
||||||
|
return self.logs
|
||||||
|
}
|
||||||
func (self *VMEnv) AddLog(log *state.Log) {
|
func (self *VMEnv) AddLog(log *state.Log) {
|
||||||
self.state.AddLog(log)
|
self.state.AddLog(log)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue