diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-02-13 17:43:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-13 17:43:50 +0800 |
commit | da41a7258d94fb35113f3b2da3635c7c451e5831 (patch) | |
tree | c123e7994d514a6c58a74e5897a5e2ef27f6cd8f /cmd/puppeth/wizard.go | |
parent | 8d32c4b9906d2a97149c4312998d46e924d863d7 (diff) | |
parent | 12dab534958c5a91fdba470836a91de545681288 (diff) | |
download | dexon-da41a7258d94fb35113f3b2da3635c7c451e5831.tar dexon-da41a7258d94fb35113f3b2da3635c7c451e5831.tar.gz dexon-da41a7258d94fb35113f3b2da3635c7c451e5831.tar.bz2 dexon-da41a7258d94fb35113f3b2da3635c7c451e5831.tar.lz dexon-da41a7258d94fb35113f3b2da3635c7c451e5831.tar.xz dexon-da41a7258d94fb35113f3b2da3635c7c451e5831.tar.zst dexon-da41a7258d94fb35113f3b2da3635c7c451e5831.zip |
Merge pull request #16073 from karalabe/puppeth-unify-discovery
cmd/puppeth: unify discv4 and discv5 ports
Diffstat (limited to 'cmd/puppeth/wizard.go')
-rw-r--r-- | cmd/puppeth/wizard.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/puppeth/wizard.go b/cmd/puppeth/wizard.go index 2e2b4644c..b88a61de7 100644 --- a/cmd/puppeth/wizard.go +++ b/cmd/puppeth/wizard.go @@ -40,8 +40,7 @@ import ( // between sessions. type config struct { path string // File containing the configuration values - bootFull []string // Bootnodes to always connect to by full nodes - bootLight []string // Bootnodes to always connect to by light nodes + bootnodes []string // Bootnodes to always connect to by all nodes ethstats string // Ethstats settings to cache for node deploys Genesis *core.Genesis `json:"genesis,omitempty"` // Genesis block to cache for node deploys |