fixes on jsdoc

This commit is contained in:
Matias Alejo Garcia 2014-11-25 13:58:10 -03:00
commit 10938b43d8
3 changed files with 6 additions and 5 deletions

View file

@ -2081,15 +2081,14 @@ Wallet.prototype.maxRejectCount = function() {
/**
* @callback getUnspentCallback
* @TODO: Document this better
* @desc Get a list of unspent transaction outputs
* @param {string} error
* @param {Object[]} safeUnspendList
* @param {Object[]} unspentList
*/
/* @ TODO add cached?
* @desc Get a list of unspent transaction outputs
* @param {getUnspentCallback} cb
*/
// TODO: Can we add cache to getUnspent?
Wallet.prototype.getUnspent = function(cb) {
var self = this;
this.blockchain.getUnspent(this.getAddressesStr(), function(err, unspentList) {