Browse Source

add comment regarding coins selection

patch-2
Matias Alejo Garcia 11 years ago
parent
commit
eb8763ac9f
  1. 4
      Transaction.js

4
Transaction.js

@ -736,6 +736,10 @@ Transaction.selectUnspent = function (utxos, totalNeededAmount, allowUnconfirmed
maxConfirmations = minConfirmations;
} while( !fulfill && minConfirmationSteps.length);
//TODO(?): sort ret and check is some inputs can be avoided.
//If the initial utxos are sorted, this step would be necesary only if
//utxos were selected from different minConfirmationSteps.
return fulfill ? ret : null;
}

Loading…
Cancel
Save