bitcoind: fix indentation

This commit is contained in:
Braydon Fuller 2016-05-23 16:48:17 -04:00
parent ea3c813d51
commit 0a95765e51
1 changed files with 3 additions and 3 deletions

View File

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