ethutil -> ethtrie.NewTrie

This commit is contained in:
zelig
2014-07-01 15:09:43 +01:00
parent 89630d2826
commit ff5703fd9b
2 changed files with 3 additions and 2 deletions

View File

@ -51,7 +51,7 @@ func MakeContract(tx *Transaction, state *State) *StateObject {
func NewStateObject(addr []byte) *StateObject {
object := &StateObject{address: addr, Amount: new(big.Int), gasPool: new(big.Int)}
object.state = NewState(ethutil.NewTrie(ethutil.Config.Db, ""))
object.state = NewState(ethtrie.NewTrie(ethutil.Config.Db, ""))
return object
}