aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/swarm/run_test.go
Commit message (Collapse)AuthorAgeFilesLines
* cmd/swarm, swarm: added access control functionality (#17404)Elad2018-08-151-9/+16
| | | | | Co-authored-by: Janos Guljas <janos@resenje.org> Co-authored-by: Anton Evangelatov <anton.evangelatov@gmail.com> Co-authored-by: Balint Gabor <balint.g@gmail.com>
* cmd/swarm: solve rare cases of using the same random port in tests (#17352)Janoš Guljaš2018-08-091-19/+117
|
* swarm: network rewrite mergeethersphere2018-06-221-19/+113
|
* all: update license information (#16089)Felix Lange2018-02-141-1/+1
|
* cmd/swarm: add config file (#15548)holisticode2017-12-121-5/+12
| | | | | | | | | | | | | | | | | 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.
* swarm/api: make api.NewManifest synchronous (#14880)Lewis Marshall2017-07-311-0/+1
| | | | | Previously, NewManifest was asynchronous so subsequent code which tried to use the returned manifest could error as the manifest was not yet persisted.
* cmd/swarm: Exit if --ethapi is setLewis Marshall2017-06-301-1/+1
| | | | | | | | The previous attempt to use --ethapi as a fallback if --ens-api is not set does not work because --ens-api has a default value, and also setting --ens-api to "" is the suggested way to disable ENS lookups. Signed-off-by: Lewis Marshall <lewis@lmars.net>
* swarm/test: add integration test for 'swarm up' (#14353)Lewis Marshall2017-06-211-0/+255