From 38ffc02423fc817741a99d2e76b6ee18b763ddbe Mon Sep 17 00:00:00 2001 From: Sai Raj <39055732+sairajzero@users.noreply.github.com> Date: Mon, 12 Aug 2019 01:36:29 +0530 Subject: [PATCH] fix UI --- FLO_torrentUploader.html | 1 + 1 file changed, 1 insertion(+) diff --git a/FLO_torrentUploader.html b/FLO_torrentUploader.html index 7432193..e2ef7ee 100644 --- a/FLO_torrentUploader.html +++ b/FLO_torrentUploader.html @@ -398,6 +398,7 @@ function sendDataToBlockchain(floID,name,filename,type,description,tags,filesize overlaytext.innerHTML = "Uploading Header..." var header = JSON.stringify({FLO_Torrent:{name:name,filename:filename,type:type,size:filesize,description:description,tags:tags,chunks:chunks.length,startTx:lastTx}}); console.log(header); + await sleep(10); var headerTxid = sendTransaction(floID,adminID,utxos,chunks.length,header,wif); if(!headerTxid) reject(`Error occured while uploading header! Try again!\nRemaining chunks : 0\nLast successful Txid : ${lastTx}`);