From 1d4de156716fea5e091986013167cd7749c959d3 Mon Sep 17 00:00:00 2001 From: James Cramer Date: Fri, 15 Nov 2019 14:22:07 -0500 Subject: [PATCH] always search block for burns --- slpgraphmanager.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/slpgraphmanager.ts b/slpgraphmanager.ts index c8d04ee7..e7547130 100644 --- a/slpgraphmanager.ts +++ b/slpgraphmanager.ts @@ -208,9 +208,9 @@ export class SlpGraphManager { } await this.fixMissingTokenTimestamps(); - // DO NOT AWAIT: Search for any burned transactions - this.searchBlockForBurnedSlpTxos(hash); } + // DO NOT AWAIT: Search for any burned transactions + this.searchBlockForBurnedSlpTxos(hash); SlpdbStatus.updateSlpProcessedBlockHeight(this._bestBlockHeight); } @@ -274,7 +274,7 @@ export class SlpGraphManager { send_txo = t.utxoToUtxoDbo(txid, vout); return; } - }) + }); if(send_txo) { console.log("Potential burned transaction found (" + txid + ":" + vout + ")"); let tokenId = send_txo.tokenDetails.tokenIdHex;