Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Accelerated DHT #45

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
4 changes: 4 additions & 0 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,10 @@ type QueryConfig struct {
// we have observed in the network during the SearchValue/GetValue
// operation. A DefaultQuorum of 0 means that we search the network until
// we have exhausted the keyspace.
//
// If you are using the FullRT implementation and keep this value at 0, then
// the DefaultQuorum will be overwritten to be:
// [Config.BucketSize] * [FullRTConfig.QuorumFrac].
DefaultQuorum int
}

Expand Down
Loading