diff --git a/DysonNetwork.Pass/Wallet/SubscriptionService.cs b/DysonNetwork.Pass/Wallet/SubscriptionService.cs index 063ec5a..2e6f069 100644 --- a/DysonNetwork.Pass/Wallet/SubscriptionService.cs +++ b/DysonNetwork.Pass/Wallet/SubscriptionService.cs @@ -79,15 +79,6 @@ public class SubscriptionService( var couponData = await couponTask; // Validation checks - if (subscriptionInfo.RequiredLevel > 0) - { - if (profile is null) - throw new InvalidOperationException("Account profile was not found."); - if (profile.Level < subscriptionInfo.RequiredLevel) - throw new InvalidOperationException( - $"Account level must be at least {subscriptionInfo.RequiredLevel} to subscribe to {identifier}." - ); - } if (isFreeTrial && prevFreeTrial != null) throw new InvalidOperationException("Free trial already exists.");