diff options
author | zelig <viktor.tron@gmail.com> | 2014-06-23 19:38:23 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-06-23 19:38:23 +0800 |
commit | 6f09a3e8200ba2eeeeb296141d6644d04078a9c4 (patch) | |
tree | 516540d7a13bb60c4bf35d03782a1b2f0df9400f /ethereal/main.go | |
parent | 34284b7532e753b7fe67a11d8fe19ba4afd9066f (diff) | |
download | go-tangerine-6f09a3e8200ba2eeeeb296141d6644d04078a9c4.tar go-tangerine-6f09a3e8200ba2eeeeb296141d6644d04078a9c4.tar.gz go-tangerine-6f09a3e8200ba2eeeeb296141d6644d04078a9c4.tar.bz2 go-tangerine-6f09a3e8200ba2eeeeb296141d6644d04078a9c4.tar.lz go-tangerine-6f09a3e8200ba2eeeeb296141d6644d04078a9c4.tar.xz go-tangerine-6f09a3e8200ba2eeeeb296141d6644d04078a9c4.tar.zst go-tangerine-6f09a3e8200ba2eeeeb296141d6644d04078a9c4.zip |
fix imports in ui_lib and flags cos of defaultAssetPath move; fix logLevel type for gui
Diffstat (limited to 'ethereal/main.go')
-rw-r--r-- | ethereal/main.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ethereal/main.go b/ethereal/main.go index 4af068197..10571be7b 100644 --- a/ethereal/main.go +++ b/ethereal/main.go @@ -1,15 +1,12 @@ package main import ( - "fmt" "github.com/ethereum/go-ethereum/ethereal/ui" "github.com/ethereum/go-ethereum/utils" "github.com/go-qml/qml" "runtime" ) -const Debug = true - func main() { qml.Init(nil) @@ -38,6 +35,6 @@ func main() { utils.StartEthereum(ethereum, UseSeed) - gui := ethui.New(ethereum, logLevel) + gui := ethui.New(ethereum, LogLevel) gui.Start(AssetPath) } |