naivecoin icon indicating copy to clipboard operation
naivecoin copied to clipboard

transaction.ts issue

Open trungtaba opened this issue 6 years ago • 0 comments

I think in hasDuplicates() function: const groups = _.countBy(txIns, (txIn) => txIn.txOutId + txIn.txOutId); Why we need calculate txIn.txOutId two time? I think it should be: const groups = _.countBy(txIns, (txIn) => txIn.txOutId + txIn.txOutIndex);

trungtaba avatar May 08 '18 15:05 trungtaba