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

[Merged by Bors] - Simplify scrypt in systests and reduce batch size #4995

Closed
wants to merge 4 commits into from
Closed
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
3 changes: 2 additions & 1 deletion config/presets/fastnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ func fastnet() config.Config {
conf.SMESHING.Start = false
conf.SMESHING.Opts.ProviderID.SetInt64(int64(initialization.CPUProviderID()))
conf.SMESHING.Opts.NumUnits = 2
conf.SMESHING.Opts.Throttle = true
conf.SMESHING.Opts.ComputeBatchSize = 128
conf.SMESHING.Opts.Scrypt.N = 2 // faster scrypt
// Override proof of work flags to use light mode (less memory intensive)
conf.SMESHING.ProvingOpts.Flags = postCfg.RecommendedPowFlags()

Expand Down
Loading