2021-06-01 09:56:19 +00:00
|
|
|
package sealiface
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
)
|
|
|
|
|
|
|
|
type CommitBatchRes struct {
|
|
|
|
Sectors []abi.SectorNumber
|
|
|
|
|
|
|
|
FailedSectors map[abi.SectorNumber]string
|
|
|
|
|
|
|
|
Msg *cid.Cid
|
|
|
|
Error string // if set, means that all sectors are failed, implies Msg==nil
|
|
|
|
}
|
2021-06-01 12:35:30 +00:00
|
|
|
|
|
|
|
type PreCommitBatchRes struct {
|
|
|
|
Sectors []abi.SectorNumber
|
|
|
|
|
|
|
|
Msg *cid.Cid
|
|
|
|
Error string // if set, means that all sectors are failed, implies Msg==nil
|
|
|
|
}
|