Merge pull request #3961 from filecoin-project/docs/miner-storage

lotus-miner: add more help text to storage / attach
This commit is contained in:
Łukasz Magiera
2020-10-07 14:55:42 +02:00
committed by GitHub
2 changed files with 30 additions and 2 deletions
+7 -2
View File
@@ -30,10 +30,15 @@ type StoragePath struct {
// LocalStorageMeta [path]/sectorstore.json
type LocalStorageMeta struct {
ID ID
ID ID
// A high weight means data is more likely to be stored in this path
Weight uint64 // 0 = readonly
CanSeal bool
// Intermediate data for the sealing process will be stored here
CanSeal bool
// Finalized sectors that will be proved over time will be stored here
CanStore bool
}