go-ethereum/xeth/world.go

65 lines
1.1 KiB
Go
Raw Normal View History

2014-10-31 15:30:08 +02:00
package xeth
2014-08-04 17:25:53 +03:00
import (
"container/list"
2014-10-31 15:43:14 +02:00
"github.com/ethereum/go-ethereum/state"
2014-08-04 17:25:53 +03:00
)
2014-08-05 12:30:12 +03:00
type World struct {
2014-10-31 15:30:08 +02:00
pipe *XEth
2014-08-05 12:31:39 +03:00
cfg *Config
2014-08-04 17:25:53 +03:00
}
2014-10-31 15:30:08 +02:00
func NewWorld(pipe *XEth) *World {
2014-08-05 12:30:12 +03:00
world := &World{pipe, nil}
2014-08-05 12:31:39 +03:00
world.cfg = &Config{pipe}
2014-08-04 17:25:53 +03:00
return world
}
2014-10-31 15:30:08 +02:00
func (self *XEth) World() *World {
2014-08-04 17:25:53 +03:00
return self.world
}
2014-10-31 15:43:14 +02:00
func (self *World) State() *state.State {
2014-11-04 11:57:02 +02:00
return self.pipe.blockManager.CurrentState()
2014-08-04 17:25:53 +03:00
}
2014-08-05 12:30:12 +03:00
func (self *World) Get(addr []byte) *Object {
2014-08-05 12:26:12 +03:00
return &Object{self.State().GetStateObject(addr)}
2014-08-04 17:25:53 +03:00
}
func (self *World) SafeGet(addr []byte) *Object {
return &Object{self.safeGet(addr)}
}
2014-10-31 15:43:14 +02:00
func (self *World) safeGet(addr []byte) *state.StateObject {
2014-08-05 12:10:24 +03:00
object := self.State().GetStateObject(addr)
if object == nil {
2014-10-31 15:43:14 +02:00
object = state.NewStateObject(addr)
2014-08-04 17:25:53 +03:00
}
2014-08-05 12:10:24 +03:00
return object
2014-08-04 17:25:53 +03:00
}
2014-10-31 15:43:14 +02:00
func (self *World) Coinbase() *state.StateObject {
2014-08-04 17:25:53 +03:00
return nil
}
2014-08-05 12:30:12 +03:00
func (self *World) IsMining() bool {
2014-08-04 17:25:53 +03:00
return self.pipe.obj.IsMining()
}
2014-08-05 12:30:12 +03:00
func (self *World) IsListening() bool {
2014-08-04 17:25:53 +03:00
return self.pipe.obj.IsListening()
}
2014-08-05 12:30:12 +03:00
func (self *World) Peers() *list.List {
2014-08-05 11:17:26 +03:00
return self.pipe.obj.Peers()
2014-08-04 17:25:53 +03:00
}
2014-08-05 12:31:39 +03:00
func (self *World) Config() *Config {
2014-08-04 17:25:53 +03:00
return self.cfg
}