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/gui.go | |
parent | beca2234af8d91b5840dad75ee0bd4f929f49c98 (diff) | |
download | go-tangerine-5c9fd19105c572ea717a8bc04758dcf3e71af47e.tar go-tangerine-5c9fd19105c572ea717a8bc04758dcf3e71af47e.tar.gz go-tangerine-5c9fd19105c572ea717a8bc04758dcf3e71af47e.tar.bz2 go-tangerine-5c9fd19105c572ea717a8bc04758dcf3e71af47e.tar.lz go-tangerine-5c9fd19105c572ea717a8bc04758dcf3e71af47e.tar.xz go-tangerine-5c9fd19105c572ea717a8bc04758dcf3e71af47e.tar.zst go-tangerine-5c9fd19105c572ea717a8bc04758dcf3e71af47e.zip |
A few start up optimisations
Diffstat (limited to 'ethereal/gui.go')
-rw-r--r-- | ethereal/gui.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereal/gui.go b/ethereal/gui.go index 832200176..573f68959 100644 --- a/ethereal/gui.go +++ b/ethereal/gui.go @@ -144,10 +144,10 @@ func (gui *Gui) showWallet(context *qml.Context) (*qml.Window, error) { win := gui.createWindow(component) go func() { - gui.setInitialBlockChain() + go gui.setInitialBlockChain() gui.loadAddressBook() - gui.readPreviousTransactions() gui.setPeerInfo() + gui.readPreviousTransactions() }() go gui.update() |