From e1e66649fc37dd1f2df07565858b195cb545cbf9 Mon Sep 17 00:00:00 2001 From: Nate Date: Fri, 15 Nov 2024 10:03:09 -0800 Subject: [PATCH] fix lint --- rhp/v4/rhp.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rhp/v4/rhp.go b/rhp/v4/rhp.go index bb5873a..bba267a 100644 --- a/rhp/v4/rhp.go +++ b/rhp/v4/rhp.go @@ -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.