You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per the spec, miner actors must be created with a sector size. This sector size can never change; all commitments will refer to sectors of the chosen size.
To begin with, the choice of sector size should be derived from the StorageMarketActor proofs mode. Miners should be created with the smaller sectors if the network is in proofs mode and should be created with larger sectors if not.
Note: We will eventually allow the miner operator to choose a sector size when creating the miner from the CLI.
Tasks
Update StorageMarketActor#CreateMiner to use StorageMarketActor.ProofsMode to pick a SectorSize for the miner
Update the Actor state to include SectorSize and create Actor#GetSectorSize
Update Actor#SubmitPoSt and Actor#CommitSector to use SectorSize stashed in Actor.Storage
The text was updated successfully, but these errors were encountered:
Description
As per the spec, miner actors must be created with a sector size. This sector size can never change; all commitments will refer to sectors of the chosen size.
To begin with, the choice of sector size should be derived from the
StorageMarketActor
proofs mode. Miners should be created with the smaller sectors if the network is in proofs mode and should be created with larger sectors if not.Note: We will eventually allow the miner operator to choose a sector size when creating the miner from the CLI.
Tasks
StorageMarketActor#CreateMiner
to useStorageMarketActor.ProofsMode
to pick aSectorSize
for the minerActor
state to includeSectorSize
and createActor#GetSectorSize
Actor#SubmitPoSt
andActor#CommitSector
to useSectorSize
stashed inActor.Storage
The text was updated successfully, but these errors were encountered: