aboutsummaryrefslogtreecommitdiffstats
path: root/xeth/world.go
blob: 25c2f3eb8ba6f080bdbd311ba7a92b859647d553 (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
61
62
63
package xeth

import (
    "github.com/ethereum/go-ethereum/p2p"
    "github.com/ethereum/go-ethereum/state"
)

type World struct {
    pipe *XEth
    cfg  *Config
}

func NewWorld(pipe *XEth) *World {
    world := &World{pipe, nil}
    world.cfg = &Config{pipe}

    return world
}

func (self *XEth) World() *World {
    return self.world
}

func (self *World) State() *state.StateDB {
    return self.pipe.chainManager.State()
}

func (self *World) Get(addr []byte) *Object {
    return &Object{self.State().GetStateObject(addr)}
}

func (self *World) SafeGet(addr []byte) *Object {
    return &Object{self.safeGet(addr)}
}

func (self *World) safeGet(addr []byte) *state.StateObject {
    object := self.State().GetStateObject(addr)
    if object == nil {
        object = state.NewStateObject(addr, self.pipe.obj.Db())
    }

    return object
}

func (self *World) Coinbase() *state.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() []*p2p.Peer {
    return self.pipe.obj.Peers()
}

func (self *World) Config() *Config {
    return self.cfg
}