Go-Ethereum

JSON-RPC 命令獲取區塊鏈同步狀態

  • August 1, 2016

是否有一些json-rpc命令,以便我可以blockchaingeth.

我正在嘗試連接到--testnet使用 get。它需要永遠連接到testnet,是否有一些可靠的節點可以連接到?

對於 JSON-RPC,有eth_syncing

// Request
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_syncing","params":[],"id":1}'

// Result
{
 "id":1,
 "jsonrpc": "2.0",
 "result": {
   startingBlock: '0x384',
   currentBlock: '0x386',
   highestBlock: '0x454'
 }
}
// Or when not syncing
{
 "id":1,
 "jsonrpc": "2.0",
 "result": false
}

Geth 使用測試網的引導節點進行硬編碼,這應該是最可靠的。確保您的時鐘同步並檢查為什麼我的乙太坊節點沒有任何對等點?.

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