mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-04 22:43:12 +00:00
* Catch Marketplace_SlotIsFree and continue the cancelled process * Add log message when the slot if free during failed state * Reduce log level to debug for slot free error * Separate slot mock errors * Initialize variable in setyp * Improve tests * Remove non-meaningful checks and rename test * Remove the Option in the error setters * Return collateral when the state is cancelled only if the slot is filled by the host * Do not propagate AsyncLockError * Wrap contract error into specific error type * Remove debug message * Catch only SlotStateMismatchError in cancelled * Fix error * Remove returnBytesWas * Use MarketError after raises pragma were defined * Fix typo * Fix lint
41 lines
1.1 KiB
Nim
41 lines
1.1 KiB
Nim
import ../../logutils
|
|
import ../../utils/exceptions
|
|
import ../../utils/exceptions
|
|
import ../salesagent
|
|
import ../statemachine
|
|
import ./errored
|
|
|
|
logScope:
|
|
topics = "marketplace sales failed"
|
|
|
|
type
|
|
SaleFailed* = ref object of SaleState
|
|
SaleFailedError* = object of SaleError
|
|
|
|
method `$`*(state: SaleFailed): string =
|
|
"SaleFailed"
|
|
|
|
method run*(
|
|
state: SaleFailed, machine: Machine
|
|
): Future[?State] {.async: (raises: []).} =
|
|
let data = SalesAgent(machine).data
|
|
let market = SalesAgent(machine).context.market
|
|
|
|
without request =? data.request:
|
|
raiseAssert "no sale request"
|
|
|
|
try:
|
|
let slot = Slot(request: request, slotIndex: data.slotIndex)
|
|
debug "Removing slot from mySlots",
|
|
requestId = data.requestId, slotIndex = data.slotIndex
|
|
|
|
await market.freeSlot(slot.id)
|
|
|
|
let error = newException(SaleFailedError, "Sale failed")
|
|
return some State(SaleErrored(error: error))
|
|
except CancelledError as e:
|
|
trace "SaleFailed.run was cancelled", error = e.msgDetail
|
|
except CatchableError as e:
|
|
error "Error during SaleFailed.run", error = e.msgDetail
|
|
return some State(SaleErrored(error: e))
|