diff options
Diffstat (limited to 'extension/popup/wallet.js')
-rw-r--r-- | extension/popup/wallet.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/extension/popup/wallet.js b/extension/popup/wallet.js index ef35193bd..da8cf72d3 100644 --- a/extension/popup/wallet.js +++ b/extension/popup/wallet.js @@ -79,12 +79,12 @@ function update_currency (currency, amount) } document.addEventListener('DOMContentLoaded', (e) => { - chrome.runtime.sendMessage({type: "WALLET_GET"}, function(wallet) { - for (let currency in wallet) { - let amount = amount_format(wallet[currency]); - add_currency(currency, amount); - } - }); + //chrome.runtime.sendMessage({type: "WALLET_GET"}, function(wallet) { + // for (let currency in wallet) { + // let amount = amount_format(wallet[currency]); + // add_currency(currency, amount); + // } + //}); // FIXME: remove add_currency('EUR', 42); |