I'm starting to use Embark framework and at some point, when I try to run an Ethereum node with the following command:
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
an error is generated saying Incorrect usage.
This command is generated by the Embark framework.
I don't understand what is triggering the error... I'm following these insructions: https://github.com/iurimatias/embark-framework/blob/1.0.2/README.md
Geth version - 1.5.0-unstable
--logfileoption another error is raised:--genesis is deprecated. Switch to use '/path/to/file'. It seems to me that embark is not updated (even if I have the latest version installed) and it doesn't follow geth modifications, but I don't find any info about embark being discontinued... Do you think that could be the problem? – amp May 04 '16 at 20:45