From 67599898dc24971c5b91f807bb3623cc77a136c7 Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Wed, 9 Oct 2024 11:24:17 +0530 Subject: [PATCH] Remove auction already used check --- stack_orchestrator/deploy/webapp/util.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/stack_orchestrator/deploy/webapp/util.py b/stack_orchestrator/deploy/webapp/util.py index f4c4343b..e389ccb4 100644 --- a/stack_orchestrator/deploy/webapp/util.py +++ b/stack_orchestrator/deploy/webapp/util.py @@ -891,10 +891,4 @@ def confirm_auction(laconic: LaconicRegistryClient, record, deployer_lrn, paymen logger.log(f"{record.id}: deployer payment address not in auction winners.") return False - # Check if the auction was already used on a deployment - used = laconic.app_deployments({"deployer": deployer_lrn, "auction": auction_id}, all=True) - if len(used): - logger.log(f"{record.id}: auction {auction_id} already used on deployment {used}") - return False - return True