Skip to content

Commit

Permalink
lotus-miner default config: don't do seal tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
codefather-filestar committed Jun 29, 2021
1 parent 08d10cf commit fb62d28
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions node/config/def.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,11 +181,11 @@ func DefaultStorageMiner() *StorageMiner {
},

Storage: sectorstorage.SealerConfig{
AllowAddPiece: true,
AllowPreCommit1: true,
AllowPreCommit2: true,
AllowCommit: true,
AllowUnseal: true,
AllowAddPiece: false,
AllowPreCommit1: false,
AllowPreCommit2: false,
AllowCommit: false,
AllowUnseal: false,

// Default to 10 - tcp should still be able to figure this out, and
// it's the ratio between 10gbit / 1gbit
Expand Down

0 comments on commit fb62d28

Please sign in to comment.