fixed issue with NaNs in getTxHistory

This commit is contained in:
Ivan Socolsky 2014-12-02 15:02:56 -03:00
parent 72cc5a1a28
commit 36a0996f0f
1 changed files with 3 additions and 0 deletions

View File

@ -2683,6 +2683,9 @@ Wallet.prototype.getTransactionHistory = function(opts, cb) {
if (addresses.length > 0) {
var from = (opts.currentPage - 1) * opts.itemsPerPage;
var to = opts.currentPage * opts.itemsPerPage;
if (!_.isNumber(from) || _.isNaN(from)) from = 0;
if (!_.isNumber(to) || _.isNaN(to)) to = null;
self.blockchain.getTransactions(addresses, from, to, function(err, res) {
if (err) return cb(err);