aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum/config.go
Commit message (Collapse)AuthorAgeFilesLines
* refactor cli and gui wrapper code. Details:zelig2014-06-231-56/+0
| | | | | | | | | | | | | | | | | | - all cli functions shared between ethereum and ethereal abstracted to utils/ cmd.go (should be ethcommon or shared or sth) - simplify main() now readable stepwise - rename main wrapper files to main.go - rename commmand line args definition file from config.go to flags.go - rename Do -> Start to parallel option names - register interrupt for rpc server stop - fix interrupt stopping js repl and ethereum - register interrupt for mining stop - custom config file option from command line - debug option from command line - loglevel option from command line - changed ethutil.Config API - default datadir and default config file set together with other flag defaults in wrappers - default assetpath set together with other command line flags defaults in gui wrapper (not in ethutil.Config or ui/ui_lib) - options precedence: default < config file < environment variables < command line
* Reimplement -datadir flag. Implements #79Maran2014-06-111-0/+4
| | | | The config file is actually loaded from the folder that datadir points at
* Added config file setup. Fixes #59obscuren2014-05-301-10/+8
| | | | * Also fixes asset path problems
* New main script through init return valueobscuren2014-05-231-2/+1
|
* Custom identifierobscuren2014-05-221-0/+2
|
* Changed flag parsingobscuren2014-05-211-1/+10
|
* Removed old console in favor of the new JS REPLobscuren2014-05-201-3/+0
|
* Increase default peer amount to 10Maran2014-05-201-1/+1
|
* Added js interpret modeobscuren2014-05-191-0/+2
|
* Tell config which loggers to useobscuren2014-05-161-2/+2
|
* Basic javascript consoleobscuren2014-05-161-0/+2
|
* Implemented a flag for a different RPC port; --rpcportMaran2014-05-131-0/+2
|
* Enable seed againMaran2014-05-131-1/+1
|
* Disable seed by defaultMaran2014-05-121-1/+1
| | | | Seed host seems down, only causes timeouts, not helpful
* Moved RPC Server and implemented it as a packageMaran2014-05-021-0/+2
|
* non-interactive optionzelig2014-04-161-0/+2
| | | | | | - add -y flag for non-interactive use - refactor main - output to logfile (not ideal..) but not to all ethutil loggers for privacy
* logfilezelig2014-04-161-2/+2
| | | | | | | - add logfile option to ethereum client flags - fallback to StdOut - Logger appended to ethutil.Config.Log loggers - wrapper uses ethutil.Config.Log
* Moved node to ethereumobscuren2014-03-221-0/+37