Wallets

如何解決 Mist 瀏覽器中的白屏問題?

  • May 21, 2016

在安裝了霧瀏覽器或乙太坊錢包後,我一直遇到出現白屏或黑屏的問題。

黑屏

如何解決錢包或瀏覽器中的空白螢幕?

缺少依賴項?

首先嘗試安裝meteorjselectron。這些依賴項應該包含在二進製文件中,但某些作業系統的行為很奇怪。

你的 GPU 被列入黑名單了嗎?

嘗試使用該--ignore-gpu-blacklist標誌執行霧或乙太坊錢包。這可能會導致客戶端崩潰。但如果它沒有崩潰,你現在可能已經執行了一個工作錢包。

gpu黑名單

連結到空白頁面的問題?

使用此腳本將所有錢包地址修復為小寫。

// Open the wallet console: Menu -> Develop -> Toggle console ...
// Run the following script

_.each(Wallets.find().fetch(), function(item){
   if(item.address)
       Wallets.update(item._id, {$set: {address: item.address.toLowerCase()}}); 
});
_.each(CustomContracts.find().fetch(), function(item){
   if(item.address)
       CustomContracts.update(item._id, {$set: {address: item.address.toLowerCase()}}); 
});
_.each(Tokens.find().fetch(), function(item){
   if(item.address)
       Tokens.update(item._id, {$set: {address: item.address.toLowerCase()}}); 
});

這會將您所有的錢包地址在內部更改為小寫(這是偶然引入的)。

引用自:https://ethereum.stackexchange.com/questions/2429