mirror of
https://github.com/status-im/nim-dagger.git
synced 2025-01-12 23:54:29 +00:00
4ffe7b8e06
* [maintenance] speedup integration test * [rest api] add proofProbability parameter to storage requests * [integration] negotiation test ends when contract starts * [integration] reusable 2 node setup for tests * [integration] introduce CodexClient for tests * [node] submit storage proofs when required * [contracts] Add Slot type * [proving] replace onProofRequired & submitProof with onProve Removes duplication between Sales.onProve() and Proving.onProofRequired()
38 lines
1.2 KiB
Nim
38 lines
1.2 KiB
Nim
import pkg/chronos
|
|
import ../statemachine
|
|
import ../salesagent
|
|
import ./errorhandling
|
|
import ./cancelled
|
|
import ./failed
|
|
|
|
type
|
|
SaleFinished* = ref object of ErrorHandlingState
|
|
|
|
method `$`*(state: SaleFinished): string = "SaleFinished"
|
|
|
|
method onCancelled*(state: SaleFinished, request: StorageRequest): ?State =
|
|
return some State(SaleCancelled())
|
|
|
|
method onFailed*(state: SaleFinished, request: StorageRequest): ?State =
|
|
return some State(SaleFailed())
|
|
|
|
method run*(state: SaleFinished, machine: Machine): Future[?State] {.async.} =
|
|
let agent = SalesAgent(machine)
|
|
let data = agent.data
|
|
let context = agent.context
|
|
|
|
if request =? data.request and
|
|
slotIndex =? data.slotIndex:
|
|
context.proving.add(Slot(request: request, slotIndex: slotIndex))
|
|
|
|
if onSale =? context.onSale:
|
|
onSale(data.availability, request, slotIndex)
|
|
|
|
# TODO: Keep track of contract completion using local clock. When contract
|
|
# has finished, we need to add back availability to the sales module.
|
|
# This will change when the state machine is updated to include the entire
|
|
# sales process, as well as when availability is persisted, so leaving it
|
|
# as a TODO for now.
|
|
|
|
await agent.unsubscribe()
|