aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/html_container.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-07-30 06:17:23 +0800
committerobscuren <geffobscura@gmail.com>2014-07-30 06:17:23 +0800
commit5c9fd19105c572ea717a8bc04758dcf3e71af47e (patch)
tree4ffbecde837319649e1bd9c5f39a7ed2f884d7de /ethereal/html_container.go
parentbeca2234af8d91b5840dad75ee0bd4f929f49c98 (diff)
downloadgo-tangerine-5c9fd19105c572ea717a8bc04758dcf3e71af47e.tar.gz
go-tangerine-5c9fd19105c572ea717a8bc04758dcf3e71af47e.tar.zst
go-tangerine-5c9fd19105c572ea717a8bc04758dcf3e71af47e.zip
A few start up optimisations
Diffstat (limited to 'ethereal/html_container.go')
-rw-r--r--ethereal/html_container.go13
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)