aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/utils/flags.go
Commit message (Collapse)AuthorAgeFilesLines
* Moved ethutil => commonobscuren2015-03-161-4/+4
|
* mergeobscuren2015-03-151-3/+3
|\
| * cmd/utils: GetEthereum -> MakeEthConfigFelix Lange2015-03-141-3/+3
| | | | | | | | | | This allows changing the config before starting Ethereum with it.
* | Move MakeName to ethutilTaylor Gerring2015-03-121-2/+1
|/
* mergeobscuren2015-03-121-3/+11
|\
| * cmd/ethereum: add a flag to switch to unencrytped keystoreFelix Lange2015-03-111-1/+10
| | | | | | | | | | | | | | | | | | This is mostly for automated tests. The tests can use the following commands to start the node: ethereum --unencrypted-keys account new ... ethereum --unencrypted-keys
* | Reverted globalobscuren2015-03-111-7/+2
| |
* | Merge branch 'develop' into rpcfrontierobscuren2015-03-111-33/+90
|\| | | | | | | | | | | Conflicts: rpc/api.go rpc/args.go
| * cmd/utils: improve CLI help templatesFelix Lange2015-03-101-0/+27
| | | | | | | | Help for a specific command now shows available subcommands.
| * cmd/ethereum: show more helpful message if no accounts existFelix Lange2015-03-101-6/+2
| |
| * accounts: add {Timed,}Unlock, remove SignLockedFelix Lange2015-03-101-2/+1
| |
| * Merge ethereum/poc-9 into accounts-integrationFelix Lange2015-03-101-7/+19
| |\ | |/ |/| | | | | | | | | | | | | | | Conflicts: cmd/utils/cmd.go cmd/utils/flags.go core/manager.go eth/backend.go rpc/http/server.go xeth/xeth.go
| * rpc: add dataDir parameter and JSON-RPC handlerFelix Lange2015-03-101-0/+18
| |
| * cmd/utils: add NewAppFelix Lange2015-03-101-0/+11
| |
| * accounts: AccountManager -> ManagerFelix Lange2015-03-081-2/+2
| |
| * cmd/ethereum: add account commandsFelix Lange2015-03-071-26/+22
| |
* | Separated block db from state db. Partial fix for #416obscuren2015-03-071-3/+8
| |
* | Debug option for VM & command line flagobscuren2015-03-061-3/+10
|/
* cmd/ethereum: improve command line interfaceFelix Lange2015-03-061-0/+178
The ethereum command line interface is now structured using subcommands. These separate the different tasks it can perform. Almost all flag names are backwards compatible. The key tasks have not been ported to subcommands since they will be replaced by the new accounts infrastructure very soon.