diff options
author | zelig <viktor.tron@gmail.com> | 2015-05-20 23:56:17 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-05-21 22:53:42 +0800 |
commit | bed80133e0573ebeefa201a15b20188198adf0ac (patch) | |
tree | a654c1c6c671a9599290a08de2b4db95385465a1 /cmd/geth/main.go | |
parent | 90b672f1af50944e136bdd6e617fad90f59fe6fe (diff) | |
download | go-tangerine-bed80133e0573ebeefa201a15b20188198adf0ac.tar go-tangerine-bed80133e0573ebeefa201a15b20188198adf0ac.tar.gz go-tangerine-bed80133e0573ebeefa201a15b20188198adf0ac.tar.bz2 go-tangerine-bed80133e0573ebeefa201a15b20188198adf0ac.tar.lz go-tangerine-bed80133e0573ebeefa201a15b20188198adf0ac.tar.xz go-tangerine-bed80133e0573ebeefa201a15b20188198adf0ac.tar.zst go-tangerine-bed80133e0573ebeefa201a15b20188198adf0ac.zip |
automatic DAG pregeneration for smooth epoch transitions
- backend: AutoDAG bool flag passed from cli/eth.Config to ethereum, autoDAG loop started if true
- backend: autoDAG loop start/stop, remove previous DAG
- cli: AutoDAG bool flag, off by default, but automatically ON if mining
- admin jsre: add startAutoDAG stopAutoDAG and makeDAG in miner section
- switch on/off DAG autogeneration when miner started/stopped on console
Diffstat (limited to 'cmd/geth/main.go')
-rw-r--r-- | cmd/geth/main.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go index ba253bbeb..6d345a18b 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -117,7 +117,7 @@ passwordfile as argument containing the wallet password in plaintext. Manage accounts lets you create new accounts, list all existing accounts, import a private key into a new account. -'account help' shows a list of subcommands or help for one subcommand. +' help' shows a list of subcommands or help for one subcommand. It supports interactive mode, when you are prompted for password as well as non-interactive mode where passwords are supplied via a given password file. @@ -257,6 +257,7 @@ JavaScript API. See https://github.com/ethereum/go-ethereum/wiki/Javascipt-Conso utils.GasPriceFlag, utils.MinerThreadsFlag, utils.MiningEnabledFlag, + utils.AutoDAGFlag, utils.NATFlag, utils.NatspecEnabledFlag, utils.NodeKeyFileFlag, |