feat: markets - separate watching for pre-commit from prove-commit

This commit is contained in:
Dirk McCormick
2020-11-24 13:24:41 -08:00
committed by hannahhoward
parent 25070314ce
commit 239e180683
13 changed files with 477 additions and 247 deletions
+1 -1
View File
@@ -111,7 +111,7 @@ func dealComplete(t *testing.T, dealStatus string) bool {
switch dealStatus {
case "StorageDealFailing", "StorageDealError":
t.Fatal(xerrors.Errorf("Storage deal failed with status: " + dealStatus))
case "StorageDealStaged", "StorageDealSealing", "StorageDealActive", "StorageDealExpired", "StorageDealSlashed":
case "StorageDealStaged", "StorageDealAwaitingPreCommit", "StorageDealSealing", "StorageDealActive", "StorageDealExpired", "StorageDealSlashed":
return true
}