diff options
author | zelig <viktor.tron@gmail.com> | 2014-07-01 22:09:43 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-07-01 22:09:43 +0800 |
commit | ff5703fd9b089de67811af61de05637c62dc7a2c (patch) | |
tree | 0c12e6fe9e0214989401bb47a6d4503081fd47bc /ethchain/state_object.go | |
parent | 89630d2826300d119f2cdc9f8af6c94926f478a2 (diff) | |
download | go-tangerine-ff5703fd9b089de67811af61de05637c62dc7a2c.tar go-tangerine-ff5703fd9b089de67811af61de05637c62dc7a2c.tar.gz go-tangerine-ff5703fd9b089de67811af61de05637c62dc7a2c.tar.bz2 go-tangerine-ff5703fd9b089de67811af61de05637c62dc7a2c.tar.lz go-tangerine-ff5703fd9b089de67811af61de05637c62dc7a2c.tar.xz go-tangerine-ff5703fd9b089de67811af61de05637c62dc7a2c.tar.zst go-tangerine-ff5703fd9b089de67811af61de05637c62dc7a2c.zip |
ethutil -> ethtrie.NewTrie
Diffstat (limited to 'ethchain/state_object.go')
-rw-r--r-- | ethchain/state_object.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/state_object.go b/ethchain/state_object.go index 7c9430af2..35928c899 100644 --- a/ethchain/state_object.go +++ b/ethchain/state_object.go @@ -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 } |