diff --git a/cmd/ethereum/cmd.go b/cmd/ethereum/cmd.go index d8cb19eaf79616e1b0c42912d5705b642818b4f9..8710d6136ed18c76d922d6c89a804a8f5f2387ae 100644 --- a/cmd/ethereum/cmd.go +++ b/cmd/ethereum/cmd.go @@ -23,8 +23,8 @@ import ( "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/javascript" - "github.com/ethereum/go-ethereum/utils" ) func InitJsConsole(ethereum *eth.Ethereum) { diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go index fa85865fc1ac2bca3c775d22b904a385934f0a61..d7bc74c273c319e982b79b9d1415751e31a48fbd 100644 --- a/cmd/ethereum/main.go +++ b/cmd/ethereum/main.go @@ -23,9 +23,9 @@ import ( "runtime" "github.com/ethereum/go-ethereum/chain" + "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/ethutil" "github.com/ethereum/go-ethereum/logger" - "github.com/ethereum/go-ethereum/utils" "github.com/ethgo.old/ethlog" ) diff --git a/cmd/mist/bindings.go b/cmd/mist/bindings.go index 8b038587b237a10cae2e5bfd3186dbda25394b17..f5a0dfcff6934b756b6b75cdbbf9775f56db50ec 100644 --- a/cmd/mist/bindings.go +++ b/cmd/mist/bindings.go @@ -23,10 +23,10 @@ import ( "strconv" "github.com/ethereum/go-ethereum/chain" + "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/ethpipe" "github.com/ethereum/go-ethereum/ethutil" "github.com/ethereum/go-ethereum/logger" - "github.com/ethereum/go-ethereum/utils" ) type plugin struct { diff --git a/cmd/mist/debugger.go b/cmd/mist/debugger.go index d786a03953db99e6ceca969b30df93e8c37fcdb2..fadc241ffb36e0f29e03a61c8b7a545bb4a55379 100644 --- a/cmd/mist/debugger.go +++ b/cmd/mist/debugger.go @@ -25,9 +25,9 @@ import ( "unicode" "github.com/ethereum/go-ethereum/chain" + "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/ethstate" "github.com/ethereum/go-ethereum/ethutil" - "github.com/ethereum/go-ethereum/utils" "github.com/ethereum/go-ethereum/vm" "gopkg.in/qml.v1" ) diff --git a/cmd/mist/flags.go b/cmd/mist/flags.go index 7de2a881dc4ad792c0a9f613f1a10663a913ac87..2ae0a0487145316e7c5bb87e008e6b051d9dcd8d 100644 --- a/cmd/mist/flags.go +++ b/cmd/mist/flags.go @@ -28,6 +28,7 @@ import ( "runtime" "bitbucket.org/kardianos/osext" + "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/vm" ) @@ -116,7 +117,7 @@ func Init() { flag.StringVar(&Datadir, "datadir", defaultDataDir(), "specifies the datadir to use") flag.StringVar(&ConfigFile, "conf", defaultConfigFile, "config file") flag.StringVar(&DebugFile, "debug", "", "debug file (no debugging if not set)") - flag.IntVar(&LogLevel, "loglevel", int(repllogger.InfoLevel), "loglevel: 0-5: silent,error,warn,info,debug,debug detail)") + flag.IntVar(&LogLevel, "loglevel", int(logger.InfoLevel), "loglevel: 0-5: silent,error,warn,info,debug,debug detail)") flag.StringVar(&AssetPath, "asset_path", defaultAssetPath(), "absolute path to GUI assets directory") diff --git a/cmd/mist/main.go b/cmd/mist/main.go index b7282d9b5211cc588537faab8f58bac53717d687..bb981b950120ca9db699b35c51cc1d5b305db637 100644 --- a/cmd/mist/main.go +++ b/cmd/mist/main.go @@ -22,8 +22,8 @@ import ( "runtime" "github.com/ethereum/go-ethereum" + "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/logger" - "github.com/ethereum/go-ethereum/utils" "gopkg.in/qml.v1" ) diff --git a/utils/cmd.go b/cmd/utils/cmd.go similarity index 100% rename from utils/cmd.go rename to cmd/utils/cmd.go diff --git a/utils/vm_env.go b/cmd/utils/vm_env.go similarity index 100% rename from utils/vm_env.go rename to cmd/utils/vm_env.go diff --git a/utils/websockets.go b/cmd/utils/websockets.go similarity index 100% rename from utils/websockets.go rename to cmd/utils/websockets.go diff --git a/javascript/javascript_runtime.go b/javascript/javascript_runtime.go index c539c434845a605a7ace3ca2140eb849e1ed6822..deb6fe305daa5d0f496118fe35bb4e95c856d703 100644 --- a/javascript/javascript_runtime.go +++ b/javascript/javascript_runtime.go @@ -9,12 +9,12 @@ import ( "github.com/ethereum/go-ethereum" "github.com/ethereum/go-ethereum/chain" + "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/ethpipe" "github.com/ethereum/go-ethereum/ethstate" "github.com/ethereum/go-ethereum/ethutil" "github.com/ethereum/go-ethereum/event" "github.com/ethereum/go-ethereum/logger" - "github.com/ethereum/go-ethereum/utils" "github.com/obscuren/otto" )