This commit is contained in:
Łukasz Magiera 2019-12-10 13:10:15 +01:00
parent 707f7878e3
commit 5e7402cbfa
2 changed files with 3 additions and 3 deletions

View File

@ -87,9 +87,9 @@ type SectorInfo struct {
Deals []uint64
Ticket sectorbuilder.SealTicket
Seed sectorbuilder.SealSeed
Retries uint64
Retries uint64
LastErr string
LastErr string
}
type SealedRef struct {

View File

@ -167,7 +167,7 @@ func (sm *StorageMinerAPI) SectorsStatus(ctx context.Context, sid uint64) (api.S
Deals: deals,
Ticket: info.Ticket.SB(),
Seed: info.Seed.SB(),
Retries: info.Nonce,
Retries: info.Nonce,
LastErr: info.LastErr,
}, nil