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

Downloader: Bump up defaults #11197

Merged
merged 2 commits into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
save
  • Loading branch information
Giulio2002 committed Jul 16, 2024
commit d41ffc57f6a2f8ec4ce39997ab1dcb680032c47f
1 change: 1 addition & 0 deletions a
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"execution_optimistic":false,"finalized":false,"data":[{"index":"1","status":"active_ongoing","balance":"1000039719517525","validator":{"pubkey":"0x93e00a11747f7f974faaa9f1198b13e83b706cdb1a3cca593230dce2ec68688b799c1a47696d33cf5a3576911b7ffe61","withdrawal_credentials":"0x00ae8ba7487ef2aa0c5c0ef511d9513f11cbde0ca7ffdae005a92d75e1f7ac81","effective_balance":"32000000000","slashed":false,"activation_eligibility_epoch":"0","activation_epoch":"0","exit_epoch":"18446744073709551615","withdrawable_epoch":"18446744073709551615"}}]}
4 changes: 2 additions & 2 deletions cmd/utils/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ var (
}
TorrentDownloadRateFlag = cli.StringFlag{
Name: "torrent.download.rate",
Value: "16mb",
Value: "128mb",
Usage: "Bytes per second, example: 32mb",
}
TorrentUploadRateFlag = cli.StringFlag{
Expand All @@ -711,7 +711,7 @@ var (
}
TorrentDownloadSlotsFlag = cli.IntFlag{
Name: "torrent.download.slots",
Value: 6,
Value: 128,
Usage: "Amount of files to download in parallel. If network has enough seeders 1-3 slot enough, if network has lack of seeders increase to 5-7 (too big value will slow down everything).",
}
TorrentStaticPeersFlag = cli.StringFlag{
Expand Down