From 4af9dfbd9bca61a965893a09685d367db1b01ac4 Mon Sep 17 00:00:00 2001 From: sairajzero Date: Fri, 23 Apr 2021 16:39:46 +0530 Subject: [PATCH] Update index.html --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 0f30e63..8804d27 100644 --- a/index.html +++ b/index.html @@ -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))