2022-09-27 14:27:40 +00:00
|
|
|
import ../statemachine
|
|
|
|
|
2022-11-08 07:10:17 +00:00
|
|
|
type PurchaseErrored* = ref object of PurchaseState
|
2022-09-27 14:27:40 +00:00
|
|
|
error*: ref CatchableError
|
|
|
|
|
2023-06-05 08:48:06 +00:00
|
|
|
method `$`*(state: PurchaseErrored): string =
|
|
|
|
"errored"
|
2022-09-27 14:27:40 +00:00
|
|
|
|
2023-06-05 08:48:06 +00:00
|
|
|
method run*(state: PurchaseErrored, machine: Machine): Future[?State] {.async.} =
|
|
|
|
let purchase = Purchase(machine)
|
2022-09-27 14:27:40 +00:00
|
|
|
purchase.future.fail(state.error)
|