diff options
author | Felix Lange <fjl@twurst.com> | 2014-11-01 01:40:32 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2014-11-01 01:52:58 +0800 |
commit | f3473312ba90b37b9a4100592a8c4d5d5bf245b7 (patch) | |
tree | efc14c86ce3c9b45bcc09c84dc9fbed79c089cb9 /tests/ethtest/main.go | |
parent | 5af4ff985dc43b648bdc96394a3bd96d9658ae0a (diff) | |
download | go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.tar go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.tar.gz go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.tar.bz2 go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.tar.lz go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.tar.xz go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.tar.zst go-tangerine-f3473312ba90b37b9a4100592a8c4d5d5bf245b7.zip |
all: fix rename breakage
Diffstat (limited to 'tests/ethtest/main.go')
-rw-r--r-- | tests/ethtest/main.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ethtest/main.go b/tests/ethtest/main.go index fb423cbd0..82fad9caf 100644 --- a/tests/ethtest/main.go +++ b/tests/ethtest/main.go @@ -8,8 +8,8 @@ import ( "os" "strings" - "github.com/ethereum/go-ethereum/ethstate" "github.com/ethereum/go-ethereum/ethutil" + "github.com/ethereum/go-ethereum/state" "github.com/ethereum/go-ethereum/tests/helper" ) @@ -20,8 +20,8 @@ type Account struct { Storage map[string]string } -func StateObjectFromAccount(addr string, account Account) *ethstate.StateObject { - obj := ethstate.NewStateObject(ethutil.Hex2Bytes(addr)) +func StateObjectFromAccount(addr string, account Account) *state.StateObject { + obj := state.NewStateObject(ethutil.Hex2Bytes(addr)) obj.SetBalance(ethutil.Big(account.Balance)) if ethutil.IsHex(account.Code) { @@ -53,7 +53,7 @@ func RunVmTest(js string) (failed int) { } for name, test := range tests { - state := ethstate.New(helper.NewTrie()) + state := state.New(helper.NewTrie()) for addr, account := range test.Pre { obj := StateObjectFromAccount(addr, account) state.SetStateObject(obj) |