diff options
author | Péter Szilágyi <peterke@gmail.com> | 2018-02-12 22:27:53 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-02-12 22:27:53 +0800 |
commit | 12dab534958c5a91fdba470836a91de545681288 (patch) | |
tree | 8413f295b41465db8f4665c37177f349e70791e9 /cmd/puppeth/wizard.go | |
parent | 70fbc873791c3acae544f3b6514afeb5012dbdbe (diff) | |
download | dexon-12dab534958c5a91fdba470836a91de545681288.tar.gz dexon-12dab534958c5a91fdba470836a91de545681288.tar.zst dexon-12dab534958c5a91fdba470836a91de545681288.zip |
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 |