Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
n8maninger committed Nov 15, 2024
1 parent 5010190 commit e1e6664
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions rhp/v4/rhp.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ const (
// the contract expires.
ProofWindow = 144 // 24 hours

// TempSectorDuration is the number of blocks that temp sectors are expected to be stored
// before being removed
TempSectorDuration = 144 * 3

// MaxSectorBatchSize is the number of sector operations that can be batched into a single RPC.
// For example, the number of sectors appended to a contract within a single RPC append call or the
// number of sectors removed in a single RPC free call.
MaxSectorBatchSize = (1 << 40) / (SectorSize)

// SectorSize is the size of one sector in bytes.
Expand Down

0 comments on commit e1e6664

Please sign in to comment.