diff --git a/icons/mist/icon.icns b/icons/mist/icon.icns index 38f7f4918..8cefa23b7 100644 Binary files a/icons/mist/icon.icns and b/icons/mist/icon.icns differ diff --git a/interface/client/appStart.js b/interface/client/appStart.js index 489714525..c44ecd32c 100644 --- a/interface/client/appStart.js +++ b/interface/client/appStart.js @@ -33,15 +33,16 @@ mistInit = function(){ }); // wait for accounts and blocks to be initialized below - // Meteor.setTimeout(function() { - // Tabs.insert({ - // url: 'http://ethereum-dapp-wallet.meteor.com', - // position: 0, - // permissions: { - // accounts: web3.eth.accounts - // } - // }); - // }, 1500); + Meteor.setTimeout(function() { + Tabs.insert({ + _id: 'wallet', + url: 'https://wallet.ethereum.org', + position: 1, + permissions: { + accounts: web3.eth.accounts + } + }); + }, 1500); } EthAccounts.init();