diff options
author | zelig <viktor.tron@gmail.com> | 2014-07-31 00:02:43 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-07-31 00:02:43 +0800 |
commit | 34e937c9761f963ac4d3c9781d72ae92e54c0761 (patch) | |
tree | 9a4c78944acd6ee924eb86916f32d508de0b66a6 /ethereal/main.go | |
parent | 2f5c95610feb77dd714bf9295d6127bef58f31bc (diff) | |
parent | 834803f1e8ce45040045359185c8b8d75f63de2c (diff) | |
download | go-tangerine-34e937c9761f963ac4d3c9781d72ae92e54c0761.tar go-tangerine-34e937c9761f963ac4d3c9781d72ae92e54c0761.tar.gz go-tangerine-34e937c9761f963ac4d3c9781d72ae92e54c0761.tar.bz2 go-tangerine-34e937c9761f963ac4d3c9781d72ae92e54c0761.tar.lz go-tangerine-34e937c9761f963ac4d3c9781d72ae92e54c0761.tar.xz go-tangerine-34e937c9761f963ac4d3c9781d72ae92e54c0761.tar.zst go-tangerine-34e937c9761f963ac4d3c9781d72ae92e54c0761.zip |
merge upstream
Diffstat (limited to 'ethereal/main.go')
-rw-r--r-- | ethereal/main.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ethereal/main.go b/ethereal/main.go index e1cd43ace..04a04536d 100644 --- a/ethereal/main.go +++ b/ethereal/main.go @@ -1,24 +1,24 @@ package main import ( + "os" + "runtime" + "github.com/ethereum/eth-go/ethlog" "github.com/ethereum/go-ethereum/utils" "github.com/go-qml/qml" - "os" - "runtime" ) const ( ClientIdentifier = "Ethereal" - Version = "0.5.17" + Version = "0.6.1" ) func main() { - // Leave QT on top at ALL times. Qt Needs to be initialized from the main thread - qml.Init(nil) - runtime.GOMAXPROCS(runtime.NumCPU()) + qml.Init(nil) + var interrupted = false utils.RegisterInterrupt(func(os.Signal) { interrupted = true |