我开始使用登船框架,并且在某一时刻,当我尝试使用以下命令运行Ethereum节点时:
geth --datadir="/tmp/embark" --logfile="/tmp/embark.log" \
--port 30303 --rpc --rpcport 8101 --rpcaddr localhost \
--networkid 75725 --rpccorsdomain "*" --minerthreads "1" \
--genesis="config/genesis/dev_genesis.json" \
--rpcapi "eth,web3" --maxpeers 4 \
--password config/password account list生成一个错误,表示Incorrect usage。
这个命令是由登船框架生成的。
我不明白是什么触发了错误..。我正在跟踪以下几个问题:https://github.com/iurimatias/embark-framework/blob/1.0.2/README.md
Geth版本- 1.5.0-unstable
发布于 2016-05-04 19:09:17
将geth降级到稳定版本,而不是使用dev版本解决了问题。
当此选项可用时,--logfile不接受参数。日志文件放置在数据目录中。它被移除了。
关于您的--genesis is deprecated消息,请参见是吗,这些争论是什么?。
您正在使用geth的Dev版本。您可以尝试使用非开发(稳定)版本的geth。下面是一个删除-dev存储库并安装geth - https://www.reddit.com/r/ethereum/comments/4a37m9/is_它_一个_问题_那_矮星池_使用_48_的_/d0x1tql.紧致稳定版本的链接。
https://ethereum.stackexchange.com/questions/3600
复制相似问题