fix rebase on top of async http client change

This commit is contained in:
Eric 2025-03-18 15:47:40 +11:00
parent 7acb05d5b1
commit f3997dd95e
No known key found for this signature in database

View File

@ -86,7 +86,10 @@ template marketplacesuite*(name: string, stopOnRequestFail: bool, body: untyped)
duration: uint64, duration: uint64,
collateralPerByte: UInt256, collateralPerByte: UInt256,
minPricePerBytePerSecond: UInt256, minPricePerBytePerSecond: UInt256,
): Future[void] {.async: (raises: [CancelledError, HttpError, ConfigurationError]).} = ): Future[void] {.
async:
(raises: [CancelledError, HttpError, ConfigurationError, CodexProcessError])
.} =
let totalCollateral = datasetSize.u256 * collateralPerByte let totalCollateral = datasetSize.u256 * collateralPerByte
# post availability to each provider # post availability to each provider
for i in 0 ..< providers().len: for i in 0 ..< providers().len: