1
0
Fork 0
forked from forks/go-ethereum
go-ethereum-modded-tocallarg/vendor/github.com/ethereum/go-ethereum/eth/ulc_config.go
2019-06-03 12:28:18 +02:00

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)
}