import eth pkg

This commit is contained in:
zelig 2014-12-14 18:23:48 +00:00
parent d84810d89d
commit 50e1dcc43a
3 changed files with 3 additions and 3 deletions

View File

@ -21,9 +21,9 @@ import (
"io/ioutil" "io/ioutil"
"os" "os"
"github.com/ethereum/go-ethereum"
"github.com/ethereum/go-ethereum/cmd/ethereum/repl" "github.com/ethereum/go-ethereum/cmd/ethereum/repl"
"github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/javascript" "github.com/ethereum/go-ethereum/javascript"
) )

View File

@ -24,7 +24,7 @@ import (
"os" "os"
"path" "path"
"github.com/ethereum/go-ethereum" "github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/ethutil" "github.com/ethereum/go-ethereum/ethutil"
"github.com/ethereum/go-ethereum/javascript" "github.com/ethereum/go-ethereum/javascript"
"github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/logger"

View File

@ -1,7 +1,7 @@
package utils package utils
import ( import (
"github.com/ethereum/go-ethereum" "github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/ethutil" "github.com/ethereum/go-ethereum/ethutil"
"github.com/ethereum/go-ethereum/websocket" "github.com/ethereum/go-ethereum/websocket"
"github.com/ethereum/go-ethereum/xeth" "github.com/ethereum/go-ethereum/xeth"