good morning!!!!

Skip to content
Snippets Groups Projects
Commit f249ccaa authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

cmd/evm: implements vm.Environment

parent cf3aabb9
No related branches found
No related tags found
No related merge requests found
......@@ -104,6 +104,7 @@ type VMEnv struct {
depth int
Gas *big.Int
time int64
logs []vm.StructLog
}
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{}
}
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) {
self.state.AddLog(log)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment