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