diff options
author | Anton Evangelatov <anton.evangelatov@gmail.com> | 2019-01-24 19:02:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-24 19:02:18 +0800 |
commit | bbd120354a8d226b446591eeda9f9462cb9b690a (patch) | |
tree | 8f629afad522e9ce44770625d49c249b7a9b4a19 /cmd/swarm/flags.go | |
parent | ecb781297bfc891f4ff26bdf3fda362744bbb3e3 (diff) | |
download | go-tangerine-bbd120354a8d226b446591eeda9f9462cb9b690a.tar go-tangerine-bbd120354a8d226b446591eeda9f9462cb9b690a.tar.gz go-tangerine-bbd120354a8d226b446591eeda9f9462cb9b690a.tar.bz2 go-tangerine-bbd120354a8d226b446591eeda9f9462cb9b690a.tar.lz go-tangerine-bbd120354a8d226b446591eeda9f9462cb9b690a.tar.xz go-tangerine-bbd120354a8d226b446591eeda9f9462cb9b690a.tar.zst go-tangerine-bbd120354a8d226b446591eeda9f9462cb9b690a.zip |
swarm: bootnode-mode, new bootnodes and no p2p package discovery (#18498)
Diffstat (limited to 'cmd/swarm/flags.go')
-rw-r--r-- | cmd/swarm/flags.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/swarm/flags.go b/cmd/swarm/flags.go index 12edc8cc9..4c186cc31 100644 --- a/cmd/swarm/flags.go +++ b/cmd/swarm/flags.go @@ -156,6 +156,10 @@ var ( Name: "compressed", Usage: "Prints encryption keys in compressed form", } + SwarmBootnodeModeFlag = cli.BoolFlag{ + Name: "bootnode-mode", + Usage: "Run Swarm in Bootnode mode", + } SwarmFeedNameFlag = cli.StringFlag{ Name: "name", Usage: "User-defined name for the new feed, limited to 32 characters. If combined with topic, it will refer to a subtopic with this name", |