-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Slow load times #295
Comments
AntiD2ta
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Dec 24, 2019
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 3, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 3, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 3, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 3, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 3, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 3, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 3, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 3, 2020
…et and then refresh balance and address async
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 3, 2020
… set default node to https://node.skycoin.com
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 3, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 3, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 6, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 6, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 6, 2020
…ction when needed
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 6, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 6, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 6, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 7, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 7, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 7, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 9, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 9, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 9, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 9, 2020
…neral config file
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 18, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 18, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 18, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 18, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 18, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 18, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 18, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 18, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 18, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 27, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 27, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 27, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 27, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 27, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 27, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 27, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Jan 27, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Feb 6, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Feb 6, 2020
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Feb 10, 2020
…te dataChange usage in modelWallets
stdevMac
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Feb 10, 2020
olemis
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Feb 13, 2020
…llet reports real value
olemis
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Feb 14, 2020
…cache for Skycoin LocalWallet
olemis
added a commit
to simelo/fibercryptowallet
that referenced
this issue
Feb 14, 2020
olemis
added a commit
that referenced
this issue
Feb 27, 2020
Fixes #295 slow load times Disclaimer: Issues detected in history view
This was referenced Feb 27, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Slow load times .
Environment information:
Steps to Reproduce
make run
from the command lineActual behavior
Wallet takes too long to show GUI . By diving in app logs the app is taking a lot of time requesting output endpoints e.g.
This could be related to determining account balance to render in wallet tree.
Expected behavior
Wallet GUI should be opened as soon as possible. All wallet data should be loaded in the background and progress indicator be shown .
Additional context
The concrete testing environment consisted of 21 local wallets.
Possible implementation
Wallet GUI should be opened once a manager is instantiated. Wallets should be added async in the tree as they get enumerated . All other data , such as inline balance label , should be included async as well .
The text was updated successfully, but these errors were encountered: