aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2014-12-15 02:23:48 +0800
committerzelig <viktor.tron@gmail.com>2014-12-15 04:30:56 +0800
commit50e1dcc43a3eb4d32147d10c29c0edeadeca6f78 (patch)
tree2d7db2326fad0381262c65ac0c1dcdc1c145a5ad /cmd
parentd84810d89df128d9120a4562bb9e6334ba6a33d4 (diff)
downloadgo-tangerine-50e1dcc43a3eb4d32147d10c29c0edeadeca6f78.tar
go-tangerine-50e1dcc43a3eb4d32147d10c29c0edeadeca6f78.tar.gz
go-tangerine-50e1dcc43a3eb4d32147d10c29c0edeadeca6f78.tar.bz2
go-tangerine-50e1dcc43a3eb4d32147d10c29c0edeadeca6f78.tar.lz
go-tangerine-50e1dcc43a3eb4d32147d10c29c0edeadeca6f78.tar.xz
go-tangerine-50e1dcc43a3eb4d32147d10c29c0edeadeca6f78.tar.zst
go-tangerine-50e1dcc43a3eb4d32147d10c29c0edeadeca6f78.zip
import eth pkg
Diffstat (limited to 'cmd')
-rw-r--r--cmd/ethereum/cmd.go2
-rw-r--r--cmd/ethereum/repl/repl.go2
-rw-r--r--cmd/utils/websockets.go2
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"