diff options
Diffstat (limited to 'ethpipe')
-rw-r--r-- | ethpipe/config.go | 2 | ||||
-rw-r--r-- | ethpipe/js_pipe.go | 8 | ||||
-rw-r--r-- | ethpipe/js_types.go | 8 | ||||
-rw-r--r-- | ethpipe/object.go | 4 | ||||
-rw-r--r-- | ethpipe/pipe.go | 12 | ||||
-rw-r--r-- | ethpipe/pipe_test.go | 6 | ||||
-rw-r--r-- | ethpipe/vm_env.go | 6 | ||||
-rw-r--r-- | ethpipe/world.go | 2 |
8 files changed, 24 insertions, 24 deletions
diff --git a/ethpipe/config.go b/ethpipe/config.go index 6c24df640..bea5005b6 100644 --- a/ethpipe/config.go +++ b/ethpipe/config.go @@ -1,6 +1,6 @@ package ethpipe -import "github.com/ethereum/eth-go/ethutil" +import "github.com/ethereum/go-ethereum/ethutil" var cnfCtr = ethutil.Hex2Bytes("661005d2720d855f1d9976f88bb10c1a3398c77f") diff --git a/ethpipe/js_pipe.go b/ethpipe/js_pipe.go index 7eb33b4ea..4b4369768 100644 --- a/ethpipe/js_pipe.go +++ b/ethpipe/js_pipe.go @@ -5,10 +5,10 @@ import ( "encoding/json" "sync/atomic" - "github.com/ethereum/eth-go/ethchain" - "github.com/ethereum/eth-go/ethcrypto" - "github.com/ethereum/eth-go/ethstate" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethchain" + "github.com/ethereum/go-ethereum/ethcrypto" + "github.com/ethereum/go-ethereum/ethstate" + "github.com/ethereum/go-ethereum/ethutil" ) type JSPipe struct { diff --git a/ethpipe/js_types.go b/ethpipe/js_types.go index b8b546980..05c12fbf6 100644 --- a/ethpipe/js_types.go +++ b/ethpipe/js_types.go @@ -5,10 +5,10 @@ import ( "strconv" "strings" - "github.com/ethereum/eth-go/ethchain" - "github.com/ethereum/eth-go/ethcrypto" - "github.com/ethereum/eth-go/ethstate" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethchain" + "github.com/ethereum/go-ethereum/ethcrypto" + "github.com/ethereum/go-ethereum/ethstate" + "github.com/ethereum/go-ethereum/ethutil" ) // Block interface exposed to QML diff --git a/ethpipe/object.go b/ethpipe/object.go index f0032992c..356ed788c 100644 --- a/ethpipe/object.go +++ b/ethpipe/object.go @@ -1,8 +1,8 @@ package ethpipe import ( - "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 Object struct { diff --git a/ethpipe/pipe.go b/ethpipe/pipe.go index 50507143c..13085c887 100644 --- a/ethpipe/pipe.go +++ b/ethpipe/pipe.go @@ -4,12 +4,12 @@ import ( "fmt" "strings" - "github.com/ethereum/eth-go/ethchain" - "github.com/ethereum/eth-go/ethcrypto" - "github.com/ethereum/eth-go/ethlog" - "github.com/ethereum/eth-go/ethstate" - "github.com/ethereum/eth-go/ethutil" - "github.com/ethereum/eth-go/vm" + "github.com/ethereum/go-ethereum/ethchain" + "github.com/ethereum/go-ethereum/ethcrypto" + "github.com/ethereum/go-ethereum/ethlog" + "github.com/ethereum/go-ethereum/ethstate" + "github.com/ethereum/go-ethereum/ethutil" + "github.com/ethereum/go-ethereum/vm" ) var logger = ethlog.NewLogger("PIPE") diff --git a/ethpipe/pipe_test.go b/ethpipe/pipe_test.go index 071213050..3b5dc5e4c 100644 --- a/ethpipe/pipe_test.go +++ b/ethpipe/pipe_test.go @@ -3,9 +3,9 @@ package ethpipe import ( "testing" - "github.com/ethereum/eth-go/ethcrypto" - "github.com/ethereum/eth-go/ethstate" - "github.com/ethereum/eth-go/ethutil" + "github.com/ethereum/go-ethereum/ethcrypto" + "github.com/ethereum/go-ethereum/ethstate" + "github.com/ethereum/go-ethereum/ethutil" ) func Val(v interface{}) *ethutil.Value { diff --git a/ethpipe/vm_env.go b/ethpipe/vm_env.go index 7ef335800..140726bfe 100644 --- a/ethpipe/vm_env.go +++ b/ethpipe/vm_env.go @@ -3,9 +3,9 @@ package ethpipe import ( "math/big" - "github.com/ethereum/eth-go/ethchain" - "github.com/ethereum/eth-go/ethstate" - "github.com/ethereum/eth-go/vm" + "github.com/ethereum/go-ethereum/ethchain" + "github.com/ethereum/go-ethereum/ethstate" + "github.com/ethereum/go-ethereum/vm" ) type VMEnv struct { diff --git a/ethpipe/world.go b/ethpipe/world.go index 4666362f9..e34bd31aa 100644 --- a/ethpipe/world.go +++ b/ethpipe/world.go @@ -3,7 +3,7 @@ package ethpipe import ( "container/list" - "github.com/ethereum/eth-go/ethstate" + "github.com/ethereum/go-ethereum/ethstate" ) type World struct { |