diff options
author | zelig <viktor.tron@gmail.com> | 2014-12-15 02:23:48 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-12-15 04:30:56 +0800 |
commit | 50e1dcc43a3eb4d32147d10c29c0edeadeca6f78 (patch) | |
tree | 2d7db2326fad0381262c65ac0c1dcdc1c145a5ad | |
parent | d84810d89df128d9120a4562bb9e6334ba6a33d4 (diff) | |
download | go-tangerine-50e1dcc43a3eb4d32147d10c29c0edeadeca6f78.tar.gz go-tangerine-50e1dcc43a3eb4d32147d10c29c0edeadeca6f78.tar.zst go-tangerine-50e1dcc43a3eb4d32147d10c29c0edeadeca6f78.zip |
import eth pkg
-rw-r--r-- | cmd/ethereum/cmd.go | 2 | ||||
-rw-r--r-- | cmd/ethereum/repl/repl.go | 2 | ||||
-rw-r--r-- | cmd/utils/websockets.go | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/cmd/ethereum/cmd.go b/cmd/ethereum/cmd.go index 8710d6136..d8b9ea487 100644 --- a/cmd/ethereum/cmd.go +++ b/cmd/ethereum/cmd.go @@ -21,9 +21,9 @@ import ( "io/ioutil" "os" - "github.com/ethereum/go-ethereum" "github.com/ethereum/go-ethereum/cmd/ethereum/repl" "github.com/ethereum/go-ethereum/cmd/utils" + "github.com/ethereum/go-ethereum/eth" "github.com/ethereum/go-ethereum/javascript" ) diff --git a/cmd/ethereum/repl/repl.go b/cmd/ethereum/repl/repl.go index a5146fecd..4a7880ff4 100644 --- a/cmd/ethereum/repl/repl.go +++ b/cmd/ethereum/repl/repl.go @@ -24,7 +24,7 @@ import ( "os" "path" - "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/eth" "github.com/ethereum/go-ethereum/ethutil" "github.com/ethereum/go-ethereum/javascript" "github.com/ethereum/go-ethereum/logger" diff --git a/cmd/utils/websockets.go b/cmd/utils/websockets.go index d3ba50e78..29f9b8aeb 100644 --- a/cmd/utils/websockets.go +++ b/cmd/utils/websockets.go @@ -1,7 +1,7 @@ package utils import ( - "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/eth" "github.com/ethereum/go-ethereum/ethutil" "github.com/ethereum/go-ethereum/websocket" "github.com/ethereum/go-ethereum/xeth" |