DRY up the use of fromHex and put it in ethutil

This commit is contained in:
Maran
2015-03-14 11:39:35 +01:00
parent b927c29469
commit 991993357c
10 changed files with 75 additions and 90 deletions

View File

@ -1,6 +1,9 @@
package xeth
import "github.com/ethereum/go-ethereum/state"
import (
"github.com/ethereum/go-ethereum/ethutil"
"github.com/ethereum/go-ethereum/state"
)
type State struct {
xeth *XEth
@ -16,7 +19,7 @@ func (self *State) State() *state.StateDB {
}
func (self *State) Get(addr string) *Object {
return &Object{self.state.GetStateObject(fromHex(addr))}
return &Object{self.state.GetStateObject(ethutil.FromHex(addr))}
}
func (self *State) SafeGet(addr string) *Object {
@ -24,9 +27,9 @@ func (self *State) SafeGet(addr string) *Object {
}
func (self *State) safeGet(addr string) *state.StateObject {
object := self.state.GetStateObject(fromHex(addr))
object := self.state.GetStateObject(ethutil.FromHex(addr))
if object == nil {
object = state.NewStateObject(fromHex(addr), self.xeth.eth.StateDb())
object = state.NewStateObject(ethutil.FromHex(addr), self.xeth.eth.StateDb())
}
return object