Skip to content
This repository has been archived by the owner on Jun 6, 2023. It is now read-only.

Fix: sector extension error #1309 #1310

Closed
wants to merge 1 commit into from
Closed
Changes from all 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
4 changes: 3 additions & 1 deletion actors/builtin/miner/policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,10 @@ var ExtensibleProofTypesV0 = map[abi.RegisteredSealProof]struct{}{
abi.RegisteredSealProof_StackedDrg64GiBV1: {},
}

// From network version 7, sectors sealed with the V1 seal proof types cannot be extended.
// From network version 7, sectors sealed with the V1 or V1.1 seal proof types may be extended.
var ExtensibleProofTypesV7 = map[abi.RegisteredSealProof]struct{}{
abi.RegisteredSealProof_StackedDrg32GiBV1: {},
abi.RegisteredSealProof_StackedDrg64GiBV1: {},
abi.RegisteredSealProof_StackedDrg32GiBV1_1: {},
abi.RegisteredSealProof_StackedDrg64GiBV1_1: {},
}
Expand Down