Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rebrand as tangerine-network/go-tangerine | Wei-Ning Huang | 2019-09-17 | 1 | -10/+10 |
| | |||||
* | Rename geth -> gdex and fix Dockerfile | Wei-Ning Huang | 2019-06-12 | 1 | -6/+6 |
| | |||||
* | Change import go github.com/dexon-foundation/dexon | Wei-Ning Huang | 2019-06-12 | 1 | -4/+4 |
| | |||||
* | cmd/swarm: FUSE do not require --ipcpath (#18112) | Ferenc Szabo | 2018-11-23 | 1 | -12/+12 |
| | | | | | | | | | - Have `${DataDir}/bzzd.ipc` as IPC path default. - Respect the `--datadir` flag. - Keep only the global `--ipcpath` flag and drop the local `--ipcpath` flag as flags might overwrite each other. (Note: before global `--ipcpath` was ignored even if it was set) fixes ethersphere#795 | ||||
* | cmd/swarm: solve rare cases of using the same random port in tests (#17352) | Janoš Guljaš | 2018-08-09 | 1 | -0/+14 |
| | |||||
* | swarm: network rewrite merge | ethersphere | 2018-06-22 | 1 | -61/+68 |
| | |||||
* | cmd/swarm: add validation for EnsAPIs configuration parameter | Janos Guljas | 2017-12-19 | 1 | -0/+95 |
| | |||||
* | all: use gometalinter.v2, fix new gosimple issues (#15650) | Zach | 2017-12-13 | 1 | -4/+4 |
| | |||||
* | cmd/swarm: add config file (#15548) | holisticode | 2017-12-12 | 1 | -0/+459 |
This commit adds a TOML configuration option to swarm. It reuses the TOML configuration structure used in geth with swarm customized items. The commit: * Adds a "dumpconfig" command to the swarm executable which allows printing the (default) configuration to stdout, which then can be redirected to a file in order to customize it. * Adds a "--config <file>" option to the swarm executable which will allow to load a configuration file in TOML format from the specified location in order to initialize the Swarm node The override priorities are like follows: environment variables override command line arguments override config file override default config. |