Go-Ethereum

關於 Ropsten 設置

  • November 15, 2017

我正在使用 geth version1.6.5 …嘗試使用以下命令設置 Ropsten …

geth --networkid=3 --syncmode=fast --cache=1024 console

它顯示以下命令

 INFO [06-15|15:54:39] Starting peer-to-peer node               instance=Geth/v1.6.5-stable-cf87713d/linux-amd64/go1.8.1
 INFO [06-15|15:54:39] Allocated cache and file handles         database=/home/toshiba/.ethereum/geth/chaindata cache=1024 handles=1024
 INFO [06-15|15:54:56] Initialised chain configuration          config="{ChainID: 3 Homestead: 0 DAO: <nil> DAOSupport: false EIP150: 0 EIP155: 10 EIP158: 10 Metropolis: <nil> Engine: unknown}"
 INFO [06-15|15:54:56] Disk storage enabled for ethash caches   dir=/home/toshiba/.ethereum/geth/ethash count=3
 INFO [06-15|15:54:56] Disk storage enabled for ethash DAGs     dir=/home/toshiba/.ethash               count=2
 INFO [06-15|15:54:56] Initialising Ethereum protocol           versions="[63 62]" network=3
INFO [06-15|15:54:56] Loaded most recent local header          number=1121759 hash=bdf4d6…ebcdec td=747686182747507
INFO [06-15|15:54:56] Loaded most recent local full block      number=0       hash=419410…ca4a2d td=1048576
INFO [06-15|15:54:56] Loaded most recent local fast block      number=1121676 hash=80f4d5…3ed841 td=747645006524095
INFO [06-15|15:54:56] Starting P2P networking 
INFO [06-15|15:54:58] UDP listener up                          self=enode://2fc98df1f0e5f3baaa527c2acd579e3d76772681ccc00f4e479a688d519416e003693db537aa37a2aac7fe22ca781f11c8b95654dc960266262edea3b0a99d42@[::]:30303
INFO [06-15|15:54:58] RLPx listener up                         self=enode://2fc98df1f0e5f3baaa527c2acd579e3d76772681ccc00f4e479a688d519416e003693db537aa37a2aac7fe22ca781f11c8b95654dc960266262edea3b0a99d42@[::]:30303
INFO [06-15|15:54:58] IPC endpoint opened: /home/toshiba/.ethereum/geth.ipc 
Welcome to the Geth JavaScript console!

instance: Geth/v1.6.5-stable-cf87713d/linux-amd64/go1.8.1
coinbase: 0x124e0fc135b5137c113d385487b56da143a9b66e
at block: 0 (Thu, 01 Jan 1970 05:30:00 IST)
datadir: /home/toshiba/.ethereum
modules: admin:1.0 debug:1.0 eth:1.0 miner:1.0 net:1.0 personal:1.0 rpc:1.0 txpool:1.0 web3:1.0

在使用命令檢查塊號 eth.blockNumber 時它返回零..因為我還沒有下載任何完整的塊……

我也在使用 Mist 版本 0.8.10..我也可以驗證在 Mist 中下載的塊..

我應該能夠使用這個帶有 Mist 的 Ropsten 設置來測試我的 dapps 嗎?

執行 dapps 是否需要全節點?

我試過從命令中省略同步模式,它會自動切換到快速模式??那麼如何下載完整節點?

請有任何建議

如果您嘗試使用命令驗證通過控制台下載的塊數eth.blockNumber,“已載入最近的本地完整塊”將始終顯示“0”,這並不意味著您的塊沒有被下載。僅在下載所有塊後才會顯示正確的塊。

參考這個了解更多

https://medium.com/@crissimrobert/a-guide-to-ropsten-testnet-setup-f8952d615417

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