diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-01-29 02:01:15 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-01-29 02:01:15 +0800 |
commit | 21fd31dad8bc6e0291ca405314b516670333c707 (patch) | |
tree | 34aa6f6d0e1f5c7316f0220f6e0569f916307fa3 /xeth/world.go | |
parent | a88f609b8ab1e20eb2564d47605985d6b8f593e8 (diff) | |
parent | 872b2497114209119becf2e8a4d4a5818e2084ee (diff) | |
download | go-tangerine-21fd31dad8bc6e0291ca405314b516670333c707.tar go-tangerine-21fd31dad8bc6e0291ca405314b516670333c707.tar.gz go-tangerine-21fd31dad8bc6e0291ca405314b516670333c707.tar.bz2 go-tangerine-21fd31dad8bc6e0291ca405314b516670333c707.tar.lz go-tangerine-21fd31dad8bc6e0291ca405314b516670333c707.tar.xz go-tangerine-21fd31dad8bc6e0291ca405314b516670333c707.tar.zst go-tangerine-21fd31dad8bc6e0291ca405314b516670333c707.zip |
Merge branch 'jsonrpc' of github.com:ethereum/go-ethereum into jsonrpc
Diffstat (limited to 'xeth/world.go')
-rw-r--r-- | xeth/world.go | 57 |
1 files changed, 13 insertions, 44 deletions
diff --git a/xeth/world.go b/xeth/world.go index 25c2f3eb8..cdceec50d 100644 --- a/xeth/world.go +++ b/xeth/world.go @@ -1,63 +1,32 @@ 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} +import "github.com/ethereum/go-ethereum/state" - return world +type State struct { + xeth *XEth } -func (self *XEth) World() *World { - return self.world +func NewState(xeth *XEth) *State { + return &State{xeth} } -func (self *World) State() *state.StateDB { - return self.pipe.chainManager.State() +func (self *State) State() *state.StateDB { + return self.xeth.chainManager.State() } -func (self *World) Get(addr []byte) *Object { - return &Object{self.State().GetStateObject(addr)} +func (self *State) Get(addr string) *Object { + return &Object{self.State().GetStateObject(fromHex(addr))} } -func (self *World) SafeGet(addr []byte) *Object { +func (self *State) SafeGet(addr string) *Object { return &Object{self.safeGet(addr)} } -func (self *World) safeGet(addr []byte) *state.StateObject { - object := self.State().GetStateObject(addr) +func (self *State) safeGet(addr string) *state.StateObject { + object := self.State().GetStateObject(fromHex(addr)) if object == nil { - object = state.NewStateObject(addr, self.pipe.obj.Db()) + object = state.NewStateObject(fromHex(addr), self.xeth.eth.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 -} |