package sealing_state // State communicates the state of the sector with respect to sealing. type State int const ( Unknown State = iota Pending // sector is still accepting user data Failed // sealing failed Sealing // sector is currently being sealed Sealed // sector has been sealed successfully )