here in loop I'm doing some db operations. Can I use multi-threading concept to call async function "addInputs" so that it would execute faster?
`for(const temp of tx.vin) {
if (temp.txid) {
  let results =  await addInputs(temp.txid,temp.vout)
     inputs.push({
         "value": results[0],
         "address": results[1]
     });
   }
}`