diff --git a/uploader.html b/uploader.html
index 6451921..7473784 100644
--- a/uploader.html
+++ b/uploader.html
@@ -696,7 +696,10 @@
loader.setAttribute("class", "loader");
getRef("overlay_content").appendChild(loader);
var overlaytext = document.createElement("div");
- overlaytext.innerHTML = 'Refreshing UTXOs';
+ overlaytext.innerHTML = `
+
+ Refreshing UTXOs
+ `;
getRef("overlay_content").appendChild(overlaytext);
var trx = bitjs.transaction();
@@ -720,7 +723,7 @@
if (!txid)
notify(`Refresh Unsuccessful! Rise the refresh fee and Try again!`, 'error');
else
- notify(`Refresh UTXO successful\ntxid:${txid}`, 'error');
+ notify(`Refresh UTXO successful\ntxid:${txid}`, 'success');
hidePopup()
}