feat!: fip-0100 dev builds of builtin-actors & go-state-types

Changes some APIs exposed in the miner actor wrapper.
This commit is contained in:
Rod Vagg
2025-03-05 18:19:06 +11:00
parent 0e86fc545d
commit 632e20a626
35 changed files with 180 additions and 131 deletions

View File

@ -768,7 +768,7 @@ func SectorsExtendCmd(getActorAddress ActorAddressGetter) *cli.Command {
if !found {
return xerrors.Errorf("sector %d is not active", id)
}
if len(si.DealIDs) > 0 && cctx.Bool("only-cc") {
if len(si.DeprecatedDealIDs) > 0 && cctx.Bool("only-cc") {
continue
}

View File

@ -1505,7 +1505,7 @@ var StateSectorCmd = &cli.Command{
if si.SectorKeyCID != nil {
fmt.Println("SectorKeyCID: ", si.SectorKeyCID)
}
fmt.Println("DealIDs: ", si.DealIDs)
fmt.Println("DealIDs (deprecated): ", si.DeprecatedDealIDs)
fmt.Println()
fmt.Println("Activation: ", cliutil.EpochTimeTs(ts.Height(), si.Activation, ts))
fmt.Println("Expiration: ", cliutil.EpochTimeTs(ts.Height(), si.Expiration, ts))