bitcoind: fix indentation

This commit is contained in:
Braydon Fuller 2016-05-23 16:48:17 -04:00
parent ea3c813d51
commit 0a95765e51

View File

@ -1433,9 +1433,9 @@ Bitcoin.prototype.getAddressSummary = function(addressArg, options, callback) {
var paginatedTxids; var paginatedTxids;
try { try {
paginatedTxids = self._paginateTxids(allTxids, fromArg, toArg); paginatedTxids = self._paginateTxids(allTxids, fromArg, toArg);
} catch(e) { } catch(e) {
return callback(e); return callback(e);
} }
var allSummary = _.clone(summary); var allSummary = _.clone(summary);
allSummary.txids = paginatedTxids; allSummary.txids = paginatedTxids;