fix tx history download

This commit is contained in:
Matias Alejo Garcia 2016-12-01 16:05:56 -03:00
commit 8335ee268f
No known key found for this signature in database
GPG key ID: 02470DB551277AB3

View file

@ -312,7 +312,7 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
return tx.txid != endingTxid;
});
return cb(null, res, res.length == limit);
return cb(null, res, res.length >= limit);
});
};