From 19fe581d7a15d944e4ff8d3487432eac01c12b36 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Fri, 22 Sep 2023 20:14:19 +1000 Subject: [PATCH] remove unneeded confirm --- codex/sales/states/filling.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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