diff options
author | obscuren <geffobscura@gmail.com> | 2014-07-30 06:17:23 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-07-30 06:17:23 +0800 |
commit | 5c9fd19105c572ea717a8bc04758dcf3e71af47e (patch) | |
tree | 4ffbecde837319649e1bd9c5f39a7ed2f884d7de /ethereal/html_container.go | |
parent | beca2234af8d91b5840dad75ee0bd4f929f49c98 (diff) | |
download | dexon-5c9fd19105c572ea717a8bc04758dcf3e71af47e.tar dexon-5c9fd19105c572ea717a8bc04758dcf3e71af47e.tar.gz dexon-5c9fd19105c572ea717a8bc04758dcf3e71af47e.tar.bz2 dexon-5c9fd19105c572ea717a8bc04758dcf3e71af47e.tar.lz dexon-5c9fd19105c572ea717a8bc04758dcf3e71af47e.tar.xz dexon-5c9fd19105c572ea717a8bc04758dcf3e71af47e.tar.zst dexon-5c9fd19105c572ea717a8bc04758dcf3e71af47e.zip |
A few start up optimisations
Diffstat (limited to 'ethereal/html_container.go')
-rw-r--r-- | ethereal/html_container.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/ethereal/html_container.go b/ethereal/html_container.go index b00d3f78e..40a9f5584 100644 --- a/ethereal/html_container.go +++ b/ethereal/html_container.go @@ -2,17 +2,18 @@ package main import ( "errors" + "io/ioutil" + "net/url" + "os" + "path" + "path/filepath" + "github.com/ethereum/eth-go/ethchain" "github.com/ethereum/eth-go/ethpub" "github.com/ethereum/eth-go/ethstate" "github.com/ethereum/eth-go/ethutil" "github.com/go-qml/qml" "github.com/howeyc/fsnotify" - "io/ioutil" - "net/url" - "os" - "path" - "path/filepath" ) type HtmlApplication struct { @@ -41,7 +42,7 @@ func (app *HtmlApplication) Create() error { return errors.New("Ethereum package not yet supported") // TODO - ethutil.OpenPackage(app.path) + //ethutil.OpenPackage(app.path) } win := component.CreateWindow(nil) |