Ethereum-Wallet-Dapp

乙太坊錢包卡在“尋找同行”

  • April 19, 2022

我正在嘗試創建一個專用網路或測試網路以使用智能合約。但是當我啟動乙太坊錢包時,它總是卡在“尋找同行……”。下面是相同的螢幕截圖。

在此處輸入圖像描述

有人可以幫我弄這個嗎?

我正在使用 ubuntu 16.04(64 位),Geth 版本是:1.7.3-stable

首先你必須工作 genesis file init

文件名程式碼使用和文件名:電腦任意dir文件保存/genesis.json

{
   "nonce"     : "0x0000000000000055",
   "mixHash"   : "0x0000000000000000000000000000000000000000000000000000000000000000",
   "parentHash" : "0x0000000000000000000000000000000000000000000000000000000000000000",
   "difficulty": "0x20000",
   "gasLimit"  : "0x800000",
   "timestamp" : "0x0",
   "extraData" : "",
   "coinbase"  : "0x0000000000000000000000000000000000000000",
   "alloc"     : {},
   "config"    : {
       "chainId": 100,
       "homesteadBlock": 0,
       "eip155Block": 0,
       "eip158Block": 0
   }
}

然後這個推薦執行:

geth --datadir "D:\CHAINDATAFINAL" init genesis.json

D:\CHAINDATAFINALmiens 數據庫目錄和 genesis 文件目錄 genesis 文件目錄,範例E:\database\genesis.json

然後私網創建這個推薦執行geth目錄:

geth --networkid 20 --port 60303 --rpc --lightkdf --cache 16 --datadir "D:\CHAINDATAFINAL" console

然後私有網路創建檢查這個網路推薦:

$ admin 

network id = 20;

重要提示:mist/ethereum 錢包打開後

如果你有 genesis 文件已經 init ,那麼你不需要 genesis 文件 init 。然後你從私網開始執行命令

試試然後問題解決

謝謝。

問題在於 Mist 錢包(當然還有一般的區塊鏈理念)背後的工程設計不佳,無法在 HDD 上執行:

https://github.com/ethereum/mist/issues/3097

您可以嘗試使用平價錢包,有時它可以工作:

https://github.com/paritytech/parity/releases

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