From a41a88eada0b3324e638f5520142d87b919f717b Mon Sep 17 00:00:00 2001 From: Daniel Radding Date: Fri, 16 Jan 2015 16:11:38 -0800 Subject: [PATCH] [FIX] Get Account Balances now uses limit=all --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index f62b3d6..698e6e2 100644 --- a/index.js +++ b/index.js @@ -92,6 +92,7 @@ Client.prototype.getAccountBalance = function(callback){ http .get(url) + .query({ limit: 'all' }) .end(function(error, response){ if (error) { return callback(error);