Official Go implementation of the Ethereum protocol
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.
go-ethereum/ethpipe/world.go

61 lines
1.0 KiB

package ethpipe
import (
"container/list"
"github.com/ethereum/eth-go/ethstate"
)
10 years ago
type World struct {
pipe *Pipe
cfg *config
}
10 years ago
func NewWorld(pipe *Pipe) *World {
world := &World{pipe, nil}
world.cfg = &config{pipe}
return world
}
10 years ago
func (self *Pipe) World() *World {
return self.world
}
10 years ago
func (self *World) State() *ethstate.State {
return self.pipe.stateManager.CurrentState()
}
10 years ago
func (self *World) Get(addr []byte) *Object {
return &Object{self.State().GetStateObject(addr)}
}
10 years ago
func (self *World) safeGet(addr []byte) *ethstate.StateObject {
object := self.State().GetStateObject(addr)
if object == nil {
object = ethstate.NewStateObject(addr)
}
return object
}
10 years ago
func (self *World) Coinbase() *ethstate.StateObject {
return nil
}
10 years ago
func (self *World) IsMining() bool {
return self.pipe.obj.IsMining()
}
10 years ago
func (self *World) IsListening() bool {
return self.pipe.obj.IsListening()
}
10 years ago
func (self *World) Peers() *list.List {
10 years ago
return self.pipe.obj.Peers()
}
10 years ago
func (self *World) Config() *config {
return self.cfg
}