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))