Update index.html

This commit is contained in:
sairajzero 2021-04-23 16:39:46 +05:30
parent 1ff12f0810
commit 4af9dfbd9b

View File

@ -8210,7 +8210,7 @@ Bitcoin.Util = {
function refreshBlockchainData() {
return new Promise((resolve, reject) => {
compactIDB.readData("appendix", "lastTx").then(lastTx => {
compactIDB.readData("appendix", "lastTx" + floGlobals.adminID).then(lastTx => {
floBlockchainAPI.readData(floGlobals.adminID, {
ignoreOld: lastTx,
sentOnly: true,
@ -8222,7 +8222,7 @@ Bitcoin.Util = {
compactIDB.addData('bonds', d[1], d[0])
data[d[0]] = d[1];
});
compactIDB.writeData('appendix', result.totalTxs, "lastTx");
compactIDB.writeData('appendix', result.totalTxs, "lastTx" + floGlobals.adminID);
resolve(data);
}).catch(error => reject(error))
}).catch(error => reject(error))