Skip to content

Commit

Permalink
New RPC Call Fix: Missing "moneysupply" from GETINFO - #335
Browse files Browse the repository at this point in the history
  • Loading branch information
uaktags authored and TheHolyRoger committed Jan 3, 2020
1 parent d91272c commit 56e3752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/explorer.js
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ module.exports = {
if(response[0].name == 'RpcError'){
return cb('There was an error. Check your console.');
}
return cb(response[0]);
return cb(response[0].moneysupply);
}
});
} else if (settings.supply == 'BALANCES') {
Expand Down

0 comments on commit 56e3752

Please sign in to comment.