diff --git a/app/client/lib/ethereum/walletConnector.js b/app/client/lib/ethereum/walletConnector.js index 7d73b105d..5ba173b7e 100644 --- a/app/client/lib/ethereum/walletConnector.js +++ b/app/client/lib/ethereum/walletConnector.js @@ -56,10 +56,16 @@ connectToNode = function() { EthAccounts.init(); EthBlocks.init(); - EthTools.ticker.start({ - extraParams: typeof mist !== 'undefined' ? 'Mist-' + mist.version : '', - currencies: ['BTC', 'USD', 'EUR', 'BRL', 'GBP'] - }); + + var options = {extraParams: (typeof mist !== 'undefined') ? 'Mist-'+ mist.version : ''}; + if (!walletConfig.noUsePrice) { + var currencies = ['BTC', 'USD', 'EUR', 'BRL', 'GBP']; + if (walletConfig.supportedCurrencies) { + currencies = walletConfig.supportedCurrencies; + } + options.currencies = currencies; + } + EthTools.ticker.start(options); if (EthAccounts.find().count() > 0) { checkForOriginalWallet();