aboutsummaryrefslogblamecommitdiffstats
path: root/xeth/state.go
blob: 7d9ceab1b60a02ded0697f57927b48092d899f7c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
            
 
        
                                                

                                               
 
                   

                            

 

                                                          

 
                                           
                         

 
                                             
                                                                       

 
                                                 


                                          
                                                            
                                                                 
                          
                                                                                            

         
                     
 
package xeth

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

type State struct {
    xeth  *XEth
    state *state.StateDB
}

func NewState(xeth *XEth, statedb *state.StateDB) *State {
    return &State{xeth, statedb}
}

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

func (self *State) Get(addr string) *Object {
    return &Object{self.state.GetStateObject(common.FromHex(addr))}
}

func (self *State) SafeGet(addr string) *Object {
    return &Object{self.safeGet(addr)}
}

func (self *State) safeGet(addr string) *state.StateObject {
    object := self.state.GetStateObject(common.FromHex(addr))
    if object == nil {
        object = state.NewStateObject(common.FromHex(addr), self.xeth.eth.StateDb())
    }

    return object
}