From 72e687f82841667191b2efef3dd699416c76e482 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Tue, 18 Mar 2025 15:47:40 +1100 Subject: [PATCH] fix rebase on top of async http client change --- tests/integration/marketplacesuite.nim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/integration/marketplacesuite.nim b/tests/integration/marketplacesuite.nim index 1e09963b..d8f90715 100644 --- a/tests/integration/marketplacesuite.nim +++ b/tests/integration/marketplacesuite.nim @@ -60,7 +60,10 @@ template marketplacesuite*(name: string, body: untyped) = duration: uint64, collateralPerByte: UInt256, minPricePerBytePerSecond: UInt256, - ): Future[void] {.async: (raises: [CancelledError, HttpError, ConfigurationError]).} = + ): Future[void] {. + async: + (raises: [CancelledError, HttpError, ConfigurationError, CodexProcessError]) + .} = let totalCollateral = datasetSize.u256 * collateralPerByte # post availability to each provider for i in 0 ..< providers().len: