diff --git a/codex/sales/states/filling.nim b/codex/sales/states/filling.nim index 0f1a7980..fb9da4d6 100644 --- a/codex/sales/states/filling.nim +++ b/codex/sales/states/filling.nim @@ -37,5 +37,5 @@ method run(state: SaleFilling, machine: Machine): Future[?State] {.async.} = debug "Filling slot", requestId = $data.requestId, slotIndex market.cancelOnError: - await market.fillSlot(data.requestId, slotIndex, state.proof, collateral).confirm(1) + await market.fillSlot(data.requestId, slotIndex, state.proof, collateral) debug "Waiting for slot filled event...", requestId = $data.requestId, slotIndex