From c9aba753ce6b0af0470f19761efeb4ebb63c5f03 Mon Sep 17 00:00:00 2001 From: sairaj mote Date: Fri, 2 Oct 2020 20:32:36 +0530 Subject: [PATCH] 0.0.51 --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index fc537cb..1063543 100644 --- a/index.html +++ b/index.html @@ -2092,7 +2092,7 @@ if(receiver !== 'undefined') composition +=` -
${transaction}
${allContacts[receiver] ? allContacts[receiver].name : receiver}` +
${transaction}
${allContacts[receiver] ? allContacts[receiver].name : receiver}` if(upiTxId !== 'undefined') composition += ` @@ -13248,9 +13248,9 @@ let sortedTransactions = Object.values(transactions).sort((a,b) => b.transactionDetails.time - a.transactionDetails.time) for(transaction of sortedTransactions){ let {tokenAmount, flodata} = transaction.parsedFloData, - receiver = flodata.match(/\b\w{34,34}\b/), + receiver = transaction.transactionDetails.vin[0].addr, timeStamp = transaction.transactionDetails.time * 1000 - + console.log(transaction) if(receiver === '' || typeof receiver === undefined || receiver === null) continue; frag.append(render.activityCard({type: 'received', amount: tokenAmount, receiver, timeStamp})) }