quorum/xeth/world.go

64 lines
1.1 KiB
Go
Raw Normal View History

2014-10-31 06:30:08 -07:00
package xeth
2014-08-04 07:25:53 -07:00
import (
"github.com/ethereum/go-ethereum/p2p"
2014-10-31 06:43:14 -07:00
"github.com/ethereum/go-ethereum/state"
2014-08-04 07:25:53 -07:00
)
2014-08-05 02:30:12 -07:00
type World struct {
2014-10-31 06:30:08 -07:00
pipe *XEth
2014-08-05 02:31:39 -07:00
cfg *Config
2014-08-04 07:25:53 -07:00
}
2014-10-31 06:30:08 -07:00
func NewWorld(pipe *XEth) *World {
2014-08-05 02:30:12 -07:00
world := &World{pipe, nil}
2014-08-05 02:31:39 -07:00
world.cfg = &Config{pipe}
2014-08-04 07:25:53 -07:00
return world
}
2014-10-31 06:30:08 -07:00
func (self *XEth) World() *World {
2014-08-04 07:25:53 -07:00
return self.world
}
2014-12-04 02:40:20 -08:00
func (self *World) State() *state.StateDB {
2014-12-10 10:59:12 -08:00
return self.pipe.chainManager.State()
2014-08-04 07:25:53 -07:00
}
2014-08-05 02:30:12 -07:00
func (self *World) Get(addr []byte) *Object {
2014-08-05 02:26:12 -07:00
return &Object{self.State().GetStateObject(addr)}
2014-08-04 07:25:53 -07:00
}
func (self *World) SafeGet(addr []byte) *Object {
return &Object{self.safeGet(addr)}
}
2014-10-31 06:43:14 -07:00
func (self *World) safeGet(addr []byte) *state.StateObject {
2014-08-05 02:10:24 -07:00
object := self.State().GetStateObject(addr)
if object == nil {
2014-10-31 06:43:14 -07:00
object = state.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
}
2014-10-31 06:43:14 -07:00
func (self *World) Coinbase() *state.StateObject {
2014-08-04 07:25:53 -07:00
return nil
}
2014-08-05 02:30:12 -07:00
func (self *World) IsMining() bool {
2014-08-04 07:25:53 -07:00
return self.pipe.obj.IsMining()
}
2014-08-05 02:30:12 -07:00
func (self *World) IsListening() bool {
2014-08-04 07:25:53 -07:00
return self.pipe.obj.IsListening()
}
func (self *World) Peers() []*p2p.Peer {
2014-08-05 01:17:26 -07:00
return self.pipe.obj.Peers()
2014-08-04 07:25:53 -07:00
}
2014-08-05 02:31:39 -07:00
func (self *World) Config() *Config {
2014-08-04 07:25:53 -07:00
return self.cfg
}