From 310a25082d1ecdb65b7316d192bcc619ff53a547 Mon Sep 17 00:00:00 2001 From: Marcin Gordel Date: Mon, 2 Sep 2024 10:35:03 +0200 Subject: [PATCH] chore: fixed min_expiration sec valu --- src/market/market.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/market/market.module.ts b/src/market/market.module.ts index 3b61382f8..cab259af0 100644 --- a/src/market/market.module.ts +++ b/src/market/market.module.ts @@ -296,7 +296,7 @@ export class MarketModuleImpl implements MarketModule { * an agreement with the provider. Therefore, we assume a minimum time of 15 minutes, * if the value calculated based on the user-defined rentHourse is less. */ - const MIN_EXPIRATION_SEC = 15; + const MIN_EXPIRATION_SEC = 15 * 60; const expirationSecBasedOnRentTime = orderOptions.rentHours * 3600; const expirationSec =