From 95a6fb4a841cbd7abe023d545e42c3d28d36405e Mon Sep 17 00:00:00 2001 From: joeuhren <46763106+joeuhren@users.noreply.github.com> Date: Sun, 22 Nov 2020 18:09:16 -0700 Subject: [PATCH] Fix GETINFO supply value --- lib/explorer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/explorer.js b/lib/explorer.js index 5ed071e..e9267d8 100644 --- a/lib/explorer.js +++ b/lib/explorer.js @@ -409,7 +409,7 @@ module.exports = { if (err) return cb('There was an error. Check your console.'); else - return cb(response); + return cb(response.moneysupply); }); } else if (settings.supply == 'BALANCES') { module.exports.balance_supply(function(supply) {