36533f7c3f
Fixes for new geth version
13 lines
149 B
Go
13 lines
149 B
Go
package config
|
|
|
|
type Discovery struct {
|
|
MDNS MDNS
|
|
}
|
|
|
|
type MDNS struct {
|
|
Enabled bool
|
|
|
|
// Time in seconds between discovery rounds
|
|
Interval int
|
|
}
|