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

deps: update renterd and remove ContractLockTimeout #4

Merged
merged 1 commit into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require (
go.sia.tech/coreutils v0.6.0
go.sia.tech/hostd v1.1.3-0.20241101150257-8319b75af8b2
go.sia.tech/jape v0.12.1
go.sia.tech/renterd v1.1.0-beta.4.0.20241104064157-62577b8fc5a2
go.sia.tech/renterd v1.1.0-beta.5.0.20241108111642-4b0f42a3d24f
go.sia.tech/walletd v0.8.1-0.20241101091153-465e9da22d82
go.uber.org/zap v1.27.0
lukechampine.com/frand v1.5.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ go.sia.tech/jape v0.12.1 h1:xr+o9V8FO8ScRqbSaqYf9bjj1UJ2eipZuNcI1nYousU=
go.sia.tech/jape v0.12.1/go.mod h1:wU+h6Wh5olDjkPXjF0tbZ1GDgoZ6VTi4naFw91yyWC4=
go.sia.tech/mux v1.3.0 h1:hgR34IEkqvfBKUJkAzGi31OADeW2y7D6Bmy/Jcbop9c=
go.sia.tech/mux v1.3.0/go.mod h1:I46++RD4beqA3cW9Xm9SwXbezwPqLvHhVs9HLpDtt58=
go.sia.tech/renterd v1.1.0-beta.4.0.20241104064157-62577b8fc5a2 h1:V0pf2WsZ+KhPuu+yc0Ob7sbt4U+y0o/5dXBAvT8aQto=
go.sia.tech/renterd v1.1.0-beta.4.0.20241104064157-62577b8fc5a2/go.mod h1:RF1WAXIjAevzbW6NSAkPX5XFYP1xPSiVQTMGPL24h3o=
go.sia.tech/renterd v1.1.0-beta.5.0.20241108111642-4b0f42a3d24f h1:xLuQwVkhpxNltC7BmDqgdOCVIC5Ja9LDD+jvXgs4UeY=
go.sia.tech/renterd v1.1.0-beta.5.0.20241108111642-4b0f42a3d24f/go.mod h1:RF1WAXIjAevzbW6NSAkPX5XFYP1xPSiVQTMGPL24h3o=
go.sia.tech/walletd v0.8.1-0.20241101091153-465e9da22d82 h1:b48uOxKkBhexR8/1bYLNscYyD8weMYWltj46wsNVhkY=
go.sia.tech/walletd v0.8.1-0.20241101091153-465e9da22d82/go.mod h1:eowElIUuv8MVsyFBbOtLytJgm0ztzQBJ9QF7ZAiIK6g=
go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
Expand Down
1 change: 0 additions & 1 deletion nodes/renterd.go
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ func (m *Manager) StartRenterd(ctx context.Context, sk types.PrivateKey, ready c

w, err := worker.New(config.Worker{
AccountsRefillInterval: time.Second,
ContractLockTimeout: 5 * time.Second,
ID: "worker",
BusFlushInterval: 100 * time.Millisecond,
DownloadOverdriveTimeout: 500 * time.Millisecond,
Expand Down