Go-Ethereum
JSON-RPC 命令獲取區塊鏈同步狀態
是否有一些
json-rpc
命令,以便我可以blockchain
從geth
.我正在嘗試連接到
--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 使用測試網的引導節點進行硬編碼,這應該是最可靠的。確保您的時鐘同步並檢查為什麼我的乙太坊節點沒有任何對等點?.