nim-dagger/codex/purchasing/states/error.nim

12 lines
318 B
Nim

import ../statemachine
type PurchaseErrored* = ref object of PurchaseState
error*: ref CatchableError
method `$`*(state: PurchaseErrored): string =
"errored"
method run*(state: PurchaseErrored, machine: Machine): Future[?State] {.async.} =
let purchase = Purchase(machine)
purchase.future.fail(state.error)