Reworking Sync Notification Warnings - ethoFS Uploads

This commit is contained in:
Dev-JamesR
2019-10-21 16:52:46 -07:00
parent 1dc114e684
commit 7bfc239241
2 changed files with 94 additions and 90 deletions

View File

@@ -61,12 +61,6 @@ function StartSyncProcess() {
if (!EthoTransactions.getIsSyncing()) {
SyncProgress.animate(1);
SyncProgress.setText(vsprintf("%d/%d (100%%)", [localBlock.number, localBlock.number]));
(function($, _M) {
M.toast({
html: 'Your Node is still syncing please do not attempt to use the wallet.',
displayLength: 10000
});
}(jQuery, M));
}
if (alreadyCatchedUp == false) {
@@ -82,12 +76,6 @@ function StartSyncProcess() {
// signal that the sync is complete
$(document).trigger("onSyncComplete");
(function($, _M) {
M.toast({
html: 'Your Node is fully synced and operational.',
displayLength: 40000
});
}(jQuery, M));
}
}
} else {