Skip to content
Merged
Changes from 3 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
14 changes: 13 additions & 1 deletion FIPS/fip-0090.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,23 @@ Note that, same as with interactive PoRep, each sector has a `SealRandEpoch` tha
```go
// Note no UnsealedCID because it must be "zero" data.
struct SectorNIActivationInfo {
SectorNumber: SectorNumber,
ReplicaInfo: ReplicaInfo
SealedCID: Cid, // CommR
SealRandEpoch: ChainEpoch,
Expiration: ChainEpoch,
}

// Organize information used in replica id
// Included to avoid breaking change for future SealerActor FIP
struct ReplicaInfo {
// Sector number used to generate replica id
// Must be set to SectorID
SealingNumber: SectorNumber,
// Sector number used as unique id in actor state
SectorID: SectorNumber,
// Must be set to ProviderID
SealerID: ActorID
}

struct ProveCommitSectorsNIParams {
// Information about sealing of each sector.
Expand Down