diff options
author | Elad <theman@elad.im> | 2018-08-20 20:09:50 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-08-20 20:09:50 +0800 |
commit | c4078fc80527b2cf0c2fd3e8771e9db06a597152 (patch) | |
tree | 7dfaaf59e0ee63a9dbbf54c2bdddd0c4a564e1b1 /swarm | |
parent | d3488c1affee6843d75db77b36f504c73e5e02e7 (diff) | |
download | dexon-c4078fc80527b2cf0c2fd3e8771e9db06a597152.tar dexon-c4078fc80527b2cf0c2fd3e8771e9db06a597152.tar.gz dexon-c4078fc80527b2cf0c2fd3e8771e9db06a597152.tar.bz2 dexon-c4078fc80527b2cf0c2fd3e8771e9db06a597152.tar.lz dexon-c4078fc80527b2cf0c2fd3e8771e9db06a597152.tar.xz dexon-c4078fc80527b2cf0c2fd3e8771e9db06a597152.tar.zst dexon-c4078fc80527b2cf0c2fd3e8771e9db06a597152.zip |
cmd/swarm: added swarm bootnodes (#17414)
Diffstat (limited to 'swarm')
-rw-r--r-- | swarm/api/config.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/swarm/api/config.go b/swarm/api/config.go index bdfffdd05..3044dc2e5 100644 --- a/swarm/api/config.go +++ b/swarm/api/config.go @@ -68,7 +68,6 @@ type Config struct { SwapAPI string Cors string BzzAccount string - BootNodes string privateKey *ecdsa.PrivateKey } @@ -93,7 +92,6 @@ func NewConfig() (c *Config) { DeliverySkipCheck: false, SyncUpdateDelay: 15 * time.Second, SwapAPI: "", - BootNodes: "", } return |