mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-28 16:47:22 +00:00
9 lines
332 B
Go
9 lines
332 B
Go
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)
|
|
}
|