good morning!!!!

Skip to content
Snippets Groups Projects
Commit 82a84dca authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Move to goroutine for faster startup time

parent 0ca776a6
Branches
Tags
No related merge requests found
...@@ -143,10 +143,12 @@ func (gui *Gui) showWallet(context *qml.Context) (*qml.Window, error) { ...@@ -143,10 +143,12 @@ func (gui *Gui) showWallet(context *qml.Context) (*qml.Window, error) {
win := gui.createWindow(component) win := gui.createWindow(component)
go func() {
gui.setInitialBlockChain() gui.setInitialBlockChain()
gui.loadAddressBook() gui.loadAddressBook()
gui.readPreviousTransactions() gui.readPreviousTransactions()
gui.setPeerInfo() gui.setPeerInfo()
}()
go gui.update() go gui.update()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment