2022-09-27 16:27:40 +02:00
|
|
|
import ../statemachine
|
2023-06-05 10:48:06 +02:00
|
|
|
import ./errorhandling
|
2022-09-27 16:27:40 +02:00
|
|
|
import ./error
|
|
|
|
|
2023-06-05 10:48:06 +02:00
|
|
|
type PurchaseCancelled* = ref object of ErrorHandlingState
|
2022-09-27 16:27:40 +02:00
|
|
|
|
2023-06-05 10:48:06 +02:00
|
|
|
method `$`*(state: PurchaseCancelled): string =
|
|
|
|
"cancelled"
|
2022-09-27 16:27:40 +02:00
|
|
|
|
2023-06-05 10:48:06 +02:00
|
|
|
method run*(state: PurchaseCancelled, machine: Machine): Future[?State] {.async.} =
|
|
|
|
let purchase = Purchase(machine)
|
|
|
|
await purchase.market.withdrawFunds(purchase.requestId)
|
2022-09-27 16:27:40 +02:00
|
|
|
let error = newException(Timeout, "Purchase cancelled due to timeout")
|
2023-06-05 10:48:06 +02:00
|
|
|
return some State(PurchaseErrored(error: error))
|