forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1017 B
61 lines
1017 B
10 years ago
|
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()
|
||
|
}
|
||
|
|
||
|
func (self *world) Get(addr []byte) *ethstate.StateObject {
|
||
|
return self.State().GetStateObject(addr)
|
||
|
}
|
||
|
|
||
|
func (self *world) safeGet(addr []byte) *ethstate.StateObject {
|
||
|
object := self.Get(addr)
|
||
|
if object != nil {
|
||
|
return object
|
||
|
}
|
||
|
|
||
|
return ethstate.NewStateObject(addr)
|
||
|
}
|
||
|
|
||
|
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 {
|
||
|
return self.obj.Peers()
|
||
|
}
|
||
|
|
||
|
func (self *world) Config() *config {
|
||
|
return self.cfg
|
||
|
}
|