diff options
Diffstat (limited to 'vm')
-rw-r--r-- | vm/address.go | 4 | ||||
-rw-r--r-- | vm/asm.go | 2 | ||||
-rw-r--r-- | vm/closure.go | 4 | ||||
-rw-r--r-- | vm/common.go | 4 | ||||
-rw-r--r-- | vm/debugger.go | 2 | ||||
-rw-r--r-- | vm/environment.go | 4 | ||||
-rw-r--r-- | vm/execution.go | 4 | ||||
-rw-r--r-- | vm/vm.go | 4 | ||||
-rw-r--r-- | vm/vm_debug.go | 4 | ||||
-rw-r--r-- | vm/vm_test.go | 10 |
10 files changed, 21 insertions, 21 deletions
diff --git a/vm/address.go b/vm/address.go index cfb7f36d9..c4aa1eb7c 100644 --- a/vm/address.go +++ b/vm/address.go @@ -3,8 +3,8 @@ package vm import ( "math/big" - "github.com/ethereum/eth-go/ethcrypto" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethcrypto" + "github.com/ethereum/go-ethereum/ethutil" ) type Address interface { @@ -4,7 +4,7 @@ import ( "fmt" "math/big" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethutil" ) func Disassemble(script []byte) (asm []string) { diff --git a/vm/closure.go b/vm/closure.go index 5a1e1d4d5..b556bc03d 100644 --- a/vm/closure.go +++ b/vm/closure.go @@ -5,8 +5,8 @@ package vm import ( "math/big" - "github.com/ethereum/eth-go/ethstate" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethstate" + "github.com/ethereum/go-ethereum/ethutil" ) type ClosureRef interface { diff --git a/vm/common.go b/vm/common.go index 3d9f57290..3b0d735ba 100644 --- a/vm/common.go +++ b/vm/common.go @@ -3,8 +3,8 @@ package vm import ( "math/big" - "github.com/ethereum/eth-go/ethlog" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethlog" + "github.com/ethereum/go-ethereum/ethutil" ) var vmlogger = ethlog.NewLogger("VM") diff --git a/vm/debugger.go b/vm/debugger.go index fdd5e34e2..b0d0e545d 100644 --- a/vm/debugger.go +++ b/vm/debugger.go @@ -1,6 +1,6 @@ package vm -import "github.com/ethereum/eth-go/ethstate" +import "github.com/ethereum/go-ethereum/ethstate" type Debugger interface { BreakHook(step int, op OpCode, mem *Memory, stack *Stack, object *ethstate.StateObject) bool diff --git a/vm/environment.go b/vm/environment.go index 23b46c5df..af67c4179 100644 --- a/vm/environment.go +++ b/vm/environment.go @@ -4,8 +4,8 @@ import ( "errors" "math/big" - "github.com/ethereum/eth-go/ethstate" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethstate" + "github.com/ethereum/go-ethereum/ethutil" ) type Environment interface { diff --git a/vm/execution.go b/vm/execution.go index c518c4b57..8da0469de 100644 --- a/vm/execution.go +++ b/vm/execution.go @@ -4,8 +4,8 @@ import ( "fmt" "math/big" - "github.com/ethereum/eth-go/ethstate" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethstate" + "github.com/ethereum/go-ethereum/ethutil" ) type Execution struct { @@ -4,8 +4,8 @@ import ( "fmt" "math/big" - "github.com/ethereum/eth-go/ethcrypto" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethcrypto" + "github.com/ethereum/go-ethereum/ethutil" ) // BIG FAT WARNING. THIS VM IS NOT YET IS USE! diff --git a/vm/vm_debug.go b/vm/vm_debug.go index b44604121..a30339e2b 100644 --- a/vm/vm_debug.go +++ b/vm/vm_debug.go @@ -4,8 +4,8 @@ import ( "fmt" "math/big" - "github.com/ethereum/eth-go/ethcrypto" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethcrypto" + "github.com/ethereum/go-ethereum/ethutil" ) type DebugVm struct { diff --git a/vm/vm_test.go b/vm/vm_test.go index 047b76121..84cca3a9d 100644 --- a/vm/vm_test.go +++ b/vm/vm_test.go @@ -9,11 +9,11 @@ import ( "os" "testing" - "github.com/ethereum/eth-go/ethcrypto" - "github.com/ethereum/eth-go/ethlog" - "github.com/ethereum/eth-go/ethstate" - "github.com/ethereum/eth-go/ethtrie" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethcrypto" + "github.com/ethereum/go-ethereum/ethlog" + "github.com/ethereum/go-ethereum/ethstate" + "github.com/ethereum/go-ethereum/ethtrie" + "github.com/ethereum/go-ethereum/ethutil" ) type TestEnv struct { |