Skip to content
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

Fix balance update delay - Closes #1539 #1609

Merged
merged 6 commits into from Jan 8, 2019
2 changes: 1 addition & 1 deletion src/store/middlewares/account.js
Expand Up @@ -116,7 +116,7 @@ const checkTransactionsAndUpdateAccount = (store, action) => {
// after a new block with second passphrase registration transaction was received
setTimeout(() => {
updateAccountData(store, action);
}, 5000);
}, 500);
}
};

Expand Down