17 lines
305 B
Go
17 lines
305 B
Go
|
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
|
||
|
}
|