Skip to content

Commit d2da55d

Browse files
committed
appease the linter
1 parent d79acce commit d2da55d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/proof/post_vproof_verify.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package proof
33
import (
44
"bytes"
55
"fmt"
6-
"math"
76
"math/big"
87
"sync"
98

@@ -131,6 +130,7 @@ func verifyWindowPoStVanilla(
131130
return true, nil
132131
}
133132

133+
/*
134134
// partitionFallbackPoStSectorProofs splits sector proofs into chunks of length cfg.SectorCount.
135135
func partitionFallbackPoStSectorProofs(cfg *PoStConfig, all []FallbackPoStSectorProof) ([][]FallbackPoStSectorProof, error) {
136136
partitionCount := int(math.Ceil(float64(len(all)) / float64(cfg.SectorCount)))
@@ -166,6 +166,7 @@ func partitionFallbackPoStSectorProofs(cfg *PoStConfig, all []FallbackPoStSector
166166
167167
return out, nil
168168
}
169+
*/
169170

170171
// checkCommR is the fallback post condition: comm_r = PoseidonHash2(comm_c, comm_r_last).
171172
func checkCommR(commC, commRLast, claimed PoseidonDomain) bool {

0 commit comments

Comments
 (0)