fpost: print message apply result
This commit is contained in:
parent
e2b2026fa5
commit
03f07042ff
@ -64,6 +64,7 @@ var SectorStates = []string{
|
|||||||
WaitSeed: "WaitSeed",
|
WaitSeed: "WaitSeed",
|
||||||
Committing: "Committing",
|
Committing: "Committing",
|
||||||
CommitWait: "CommitWait",
|
CommitWait: "CommitWait",
|
||||||
|
FinalizeSector: "FinalizeSector",
|
||||||
Proving: "Proving",
|
Proving: "Proving",
|
||||||
|
|
||||||
SealFailed: "SealFailed",
|
SealFailed: "SealFailed",
|
||||||
|
@ -211,5 +211,19 @@ func (s *fpostScheduler) submitPost(ctx context.Context, proof *actors.SubmitFal
|
|||||||
|
|
||||||
log.Infof("Submitted fallback post: %s", sm.Cid())
|
log.Infof("Submitted fallback post: %s", sm.Cid())
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
rec, err := s.api.StateWaitMsg(context.TODO(), sm.Cid())
|
||||||
|
if err != nil {
|
||||||
|
log.Error(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if rec.Receipt.ExitCode == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
log.Errorf("Submitting fallback post %s failed: exit %d", sm.Cid(), rec.Receipt.ExitCode)
|
||||||
|
}()
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user