diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/blocktest.go | 2 | ||||
-rw-r--r-- | tests/helper/vm.go | 4 | ||||
-rw-r--r-- | tests/vm/gh_test.go | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/tests/blocktest.go b/tests/blocktest.go index 5719a835b..34bd69ac8 100644 --- a/tests/blocktest.go +++ b/tests/blocktest.go @@ -15,7 +15,7 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/rlp" - "github.com/ethereum/go-ethereum/state" + "github.com/ethereum/go-ethereum/core/state" ) // Block Test JSON Format diff --git a/tests/helper/vm.go b/tests/helper/vm.go index 44c108870..68ae8e97b 100644 --- a/tests/helper/vm.go +++ b/tests/helper/vm.go @@ -7,8 +7,8 @@ import ( "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/crypto" - "github.com/ethereum/go-ethereum/state" - "github.com/ethereum/go-ethereum/vm" + "github.com/ethereum/go-ethereum/core/state" + "github.com/ethereum/go-ethereum/core/vm" ) type Env struct { diff --git a/tests/vm/gh_test.go b/tests/vm/gh_test.go index 68600d304..123e8ccb5 100644 --- a/tests/vm/gh_test.go +++ b/tests/vm/gh_test.go @@ -10,7 +10,7 @@ import ( "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/ethdb" "github.com/ethereum/go-ethereum/logger" - "github.com/ethereum/go-ethereum/state" + "github.com/ethereum/go-ethereum/core/state" "github.com/ethereum/go-ethereum/tests/helper" ) |