Skip to content

Commit

Permalink
fix: Add missing post proof (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
strahe authored Apr 21, 2023
1 parent e5a0c82 commit 39a3d9b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions abi/sector.go
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,26 @@ var PoStProofInfos = map[RegisteredPoStProof]*PoStProofInfo{
SectorSize: ss64GiB,
ProofSize: 192,
},
RegisteredPoStProof_StackedDrgWindow2KiBV1_1: {
SectorSize: ss2KiB,
ProofSize: 192,
},
RegisteredPoStProof_StackedDrgWindow8MiBV1_1: {
SectorSize: ss8MiB,
ProofSize: 192,
},
RegisteredPoStProof_StackedDrgWindow512MiBV1_1: {
SectorSize: ss512MiB,
ProofSize: 192,
},
RegisteredPoStProof_StackedDrgWindow32GiBV1_1: {
SectorSize: ss32GiB,
ProofSize: 192,
},
RegisteredPoStProof_StackedDrgWindow64GiBV1_1: {
SectorSize: ss64GiB,
ProofSize: 192,
},
}

func (p RegisteredPoStProof) SectorSize() (SectorSize, error) {
Expand Down

0 comments on commit 39a3d9b

Please sign in to comment.