ulc_config.go 332 B

123456789
  1. package eth
  2. const DefaultULCMinTrustedFraction = 75
  3. // ULCConfig is a Ultra Light client options.
  4. type ULCConfig struct {
  5. TrustedServers []string `toml:",omitempty"` // A list of trusted servers
  6. MinTrustedFraction int `toml:",omitempty"` // Minimum percentage of connected trusted servers to validate trusted (1-100)
  7. }