diff --git a/src/VirtoCommerce.StoreModule.Core/ModuleConstants.cs b/src/VirtoCommerce.StoreModule.Core/ModuleConstants.cs index 5c0f2318..36081801 100644 --- a/src/VirtoCommerce.StoreModule.Core/ModuleConstants.cs +++ b/src/VirtoCommerce.StoreModule.Core/ModuleConstants.cs @@ -67,14 +67,6 @@ public static class General DefaultValue = false, }; - public static SettingDescriptor EnablePriceRoundingForTotalsCalculation = new SettingDescriptor - { - Name = "Stores.EnablePriceRoundingForTotalsCalculation", - GroupName = "Store|General", - ValueType = SettingValueType.Boolean, - DefaultValue = true, - }; - public static IEnumerable AllSettings { get @@ -84,7 +76,6 @@ public static IEnumerable AllSettings yield return AllowAnonymousUsers; yield return IsSpa; yield return EmailVerificationEnabled; - yield return EnablePriceRoundingForTotalsCalculation; } } }