aboutsummaryrefslogtreecommitdiffstats
path: root/ethpipe/world.go
blob: 2a07f340c174935ea52e970860ed1f01e3c7e944 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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) *Object {
    return &Object{self.State().GetStateObject(addr)}
}

func (self *world) safeGet(addr []byte) *ethstate.StateObject {
    object := self.State().GetStateObject(addr)
    if object == nil {
        object = ethstate.NewStateObject(addr)
    }

    return object
}

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.pipe.obj.Peers()
}

func (self *world) Config() *config {
    return self.cfg
}