We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 703921d commit 08a7bb4Copy full SHA for 08a7bb4
codex/sales/states/downloading.nim
@@ -75,6 +75,13 @@ method run*(
75
return some State(SaleErrored(error: err, reprocessSlot: false))
76
77
trace "Download complete"
78
+
79
+ if updatedReservation =? await reservations.get(reservation.id, Reservation):
80
+ if updatedReservation.size != 0:
81
+ error "After downloading the data there is unused capacity in Reservation"
82
+ else:
83
+ error "Couldn't get updated reservation"
84
85
return some State(SaleInitialProving())
86
except CancelledError as e:
87
trace "SaleDownloading.run was cancelled", error = e.msgDetail
0 commit comments