From 0a95765e51a73b378ca55588fd78acfe97f2bd4f Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Mon, 23 May 2016 16:48:17 -0400 Subject: [PATCH] bitcoind: fix indentation --- lib/services/bitcoind.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/services/bitcoind.js b/lib/services/bitcoind.js index ff10c390..e882839a 100644 --- a/lib/services/bitcoind.js +++ b/lib/services/bitcoind.js @@ -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;