aboutsummaryrefslogtreecommitdiffstats
path: root/eth/ulc_config.go
blob: effa6da217b3bd30ba0951e87244f45413545c46 (plain) (blame)
1
2
3
4
5
6
7
8
9
package eth

const DefaultULCMinTrustedFraction = 75

// ULCConfig is a Ultra Light client options.
type ULCConfig struct {
    TrustedServers     []string `toml:",omitempty"` // A list of trusted servers
    MinTrustedFraction int      `toml:",omitempty"` // Minimum percentage of connected trusted servers to validate trusted (1-100)
}