diff --git a/lib/explorer.js b/lib/explorer.js index eaae7e5d9..91f52c4d4 100644 --- a/lib/explorer.js +++ b/lib/explorer.js @@ -253,6 +253,9 @@ module.exports = { }, get_supply: function(cb) { + if(coin.hasOwnProperty('customGetSupply')){ + return coin.customGetSupply(client, cb); + } if ( settings.supply == 'HEAVY' ) { client.command([{method:'getsupply', parameters: []}], function(err, response){ if(err){console.log('Error: ', err); }