From 947c7f7056fa5b82eb7eba0826802b83d11eb84f Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Tue, 1 Mar 2022 21:52:59 -0600 Subject: [PATCH] Fix onchain txs not being accounted for --- class/User.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class/User.js b/class/User.js index a4f8e86..31a149d 100644 --- a/class/User.js +++ b/class/User.js @@ -504,7 +504,7 @@ export class User { * @returns {Promise} */ async accountForPosibleTxids() { - return; // TODO: remove + // return; // TODO: remove let onchain_txs = await this.getTxs(); let imported_txids = await this._redis.lrange('imported_txids_for_' + this._userid, 0, -1); for (let tx of onchain_txs) {