Go-Ethereum

提供但未定義的 geth 1.8.15 標誌:–fast

  • November 26, 2020

我擁有的 Geth 版本:

Version: 1.8.15-unstable
Architecture: amd64
Protocol Versions: [63 62]
Network Id: 1
Go Version: go1.11
Operating System: linux
GOPATH=
GOROOT=/usr/local/go

去版本:

$ which go
/usr/bin/go
$ go version
go version go1.11 linux/amd64
$ echo $GOROOT
(Blank line)

geth --fast --cache=1024 ...

我收到的錯誤:

flag provided but not defined: -fast

我可以在以前的版本上使用--fast標誌,但現在我不能。是因為--fast刪除了標誌或其他原因。我該如何解決這個錯誤?是否有任何替代標誌--fast

=> 類似的問題

--syncmode fast您可以改用標誌

他們已經更新了 wiki 文件https://github.com/ethereum/go-ethereum/wiki/Command-Line-Options

不推薦使用的選項:

–fast 通過狀態下載啟用快速同步(由 –syncmode 代替)

–light 啟用輕客戶端模式(由 –syncmode 替換)

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