remove unneeded confirm

This commit is contained in:
Eric 2023-09-22 20:14:19 +10:00
parent 2537add13a
commit 19fe581d7a
No known key found for this signature in database

View File

@ -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