fix imports in ui_lib and flags cos of defaultAssetPath move; fix logLevel type for gui

This commit is contained in:
zelig
2014-06-23 12:38:23 +01:00
parent 34284b7532
commit 6f09a3e820
4 changed files with 17 additions and 11 deletions

View File

@ -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)
}