Go-Ethereum

Geth 沒有發出待處理的交易

  • June 5, 2021

我連接到兩個節點,我的和外部的。外部的會發出我沒有的未決交易。

我啟動了 geth 全節點(下載網路快照後)。使用 eth.syncing 24 小時後,我看到了。

{

currentBlock: 8024425,

highestBlock: 8024537,

knownStates: 102117366,

pulledStates: 102026296,

startingBlock: 1698957

}

執行命令:

./geth --config ./config.toml --datadir /root/node --cache 18000 --rpc.allow-unprotected-txs --txlookuplimit 0 --ws

這可能是同步問題嗎?有什麼想法嗎?謝謝!

是的,在節點完成同步之前,它無法驗證交易。

該命令eth.syncing應該返回false。如果您看到其他任何內容,則說明您仍在同步。

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