Skip to content

Commit

Permalink
fix from when updating deps
Browse files Browse the repository at this point in the history
  • Loading branch information
aschmahmann committed Apr 22, 2021
1 parent 751772f commit 105b730
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions core/node/libp2p/routing.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,10 @@ func BaseRouting(experimentalDHTClient bool) interface{} {

expClient, err := fullrt.NewFullRT(ctx, in.Host,
dht.DefaultPrefix,
fullrt.Validator(in.Validator),
fullrt.Datastore(in.Repo.Datastore()),
fullrt.BootstrapPeers(bspeers...))
dht.Validator(in.Validator),
dht.Datastore(in.Repo.Datastore()),
dht.BootstrapPeers(bspeers...),
dht.BucketSize(20))
if err != nil {
return out, err
}
Expand Down
1 change: 1 addition & 0 deletions core/node/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ func SimpleProviderSys(isOnline bool) interface{} {

type provideMany interface {
ProvideMany(ctx context.Context, keys []multihash.Multihash) error
Ready() bool
}

// BatchedProviderSys creates new provider system
Expand Down

0 comments on commit 105b730

Please sign in to comment.