quorum/ethpipe/world.go

61 lines
1.0 KiB
Go
Raw Normal View History

2014-08-04 07:25:53 -07:00
package ethpipe
import (
"container/list"
"github.com/ethereum/eth-go/ethstate"
)
type world struct {
pipe *Pipe
cfg *config
}
func NewWorld(pipe *Pipe) *world {
world := &world{pipe, nil}
world.cfg = &config{pipe}
return world
}
func (self *Pipe) World() *world {
return self.world
}
func (self *world) State() *ethstate.State {
return self.pipe.stateManager.CurrentState()
}
2014-08-05 02:26:12 -07:00
func (self *world) Get(addr []byte) *Object {
return &Object{self.State().GetStateObject(addr)}
2014-08-04 07:25:53 -07:00
}
func (self *world) safeGet(addr []byte) *ethstate.StateObject {
2014-08-05 02:10:24 -07:00
object := self.State().GetStateObject(addr)
if object == nil {
object = ethstate.NewStateObject(addr)
2014-08-04 07:25:53 -07:00
}
2014-08-05 02:10:24 -07:00
return object
2014-08-04 07:25:53 -07:00
}
func (self *world) Coinbase() *ethstate.StateObject {
return nil
}
func (self *world) IsMining() bool {
return self.pipe.obj.IsMining()
}
func (self *world) IsListening() bool {
return self.pipe.obj.IsListening()
}
func (self *world) Peers() *list.List {
2014-08-05 01:17:26 -07:00
return self.pipe.obj.Peers()
2014-08-04 07:25:53 -07:00
}
func (self *world) Config() *config {
return self.cfg
}