From d3b87e89840853b095aed76bcf756f04a30d3c30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A9=99=E5=AD=90?= <454313500@qq.com> Date: Sun, 20 Oct 2024 22:37:13 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E8=B0=83=E6=95=B4=E6=A6=82=E7=8E=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Settings/DigitalCollectiblesSettingProvider.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Yi.Abp.Net8/module/digital-collectibles/Yi.Framework.DigitalCollectibles.Domain.Shared/Settings/DigitalCollectiblesSettingProvider.cs b/Yi.Abp.Net8/module/digital-collectibles/Yi.Framework.DigitalCollectibles.Domain.Shared/Settings/DigitalCollectiblesSettingProvider.cs index 37eb610e..1537942e 100644 --- a/Yi.Abp.Net8/module/digital-collectibles/Yi.Framework.DigitalCollectibles.Domain.Shared/Settings/DigitalCollectiblesSettingProvider.cs +++ b/Yi.Abp.Net8/module/digital-collectibles/Yi.Framework.DigitalCollectibles.Domain.Shared/Settings/DigitalCollectiblesSettingProvider.cs @@ -16,16 +16,16 @@ namespace Yi.Abp.Domain.Shared.Settings { context.Add( //每日矿池最大上限--控制矿池膨胀率 - new SettingDefinition("MaxPoolLimit", "500"), + new SettingDefinition("MaxPoolLimit", "100"), //每日挖矿最大上限--控制无限挖矿 - new SettingDefinition("MiningMaxLimit", "360"), + new SettingDefinition("MiningMaxLimit", "36"), //每次挖矿最小间隔(秒)--控制暴力挖矿 - new SettingDefinition("MiningMinIntervalSeconds", "1"), + new SettingDefinition("MiningMinIntervalSeconds", "3"), //每次挖到矿的概率--控制爆率 - new SettingDefinition("MiningMinProbability", "0.5"), + new SettingDefinition("MiningMinProbability", "0.06"), //交易税率--控制频繁交易 new SettingDefinition("MarketTaxRate", "0.2")