Skip to content

Commit

Permalink
chore: fixed min_expiration sec valu
Browse files Browse the repository at this point in the history
  • Loading branch information
mgordel committed Sep 2, 2024
1 parent c91b270 commit 310a250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/market/market.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 310a250

Please sign in to comment.