diff --git a/src/subdomains/core/aml/services/aml-helper.service.ts b/src/subdomains/core/aml/services/aml-helper.service.ts index 124b9e9a68..db4100b70c 100644 --- a/src/subdomains/core/aml/services/aml-helper.service.ts +++ b/src/subdomains/core/aml/services/aml-helper.service.ts @@ -270,7 +270,6 @@ export class AmlHelperService { errors.push(AmlError.ACCOUNT_IBAN_BLACKLISTED); const bank = banks.find((b) => b.iban === entity.bankTx.accountIban); - if (bank?.sctInst && !entity.userData.olkypayAllowed) errors.push(AmlError.INSTANT_NOT_ALLOWED); if (bank?.sctInst && !entity.outputAsset.instantBuyable) errors.push(AmlError.ASSET_NOT_INSTANT_BUYABLE); if (bank && !bank.amlEnabled) errors.push(AmlError.BANK_DEACTIVATED); } else if (entity.checkoutTx) {