feat: 完善,调整矿物刷新
This commit is contained in:
@@ -5,4 +5,6 @@ namespace Yi.Framework.DigitalCollectibles.Domain.Shared.Etos;
|
||||
public class SuccessMiningEto
|
||||
{
|
||||
public Guid CollectiblesId { get; set; }
|
||||
|
||||
public Guid UserId{ get; set; }
|
||||
}
|
||||
@@ -19,16 +19,25 @@ namespace Yi.Abp.Domain.Shared.Settings
|
||||
new SettingDefinition("MaxPoolLimit", "100"),
|
||||
|
||||
//每日挖矿最大上限--控制无限挖矿
|
||||
new SettingDefinition("MiningMaxLimit", "36"),
|
||||
|
||||
// new SettingDefinition("MiningMaxLimit", "36"),
|
||||
new SettingDefinition("MiningMaxLimit", "999"),
|
||||
|
||||
//每次挖矿最小间隔(秒)--控制暴力挖矿
|
||||
new SettingDefinition("MiningMinIntervalSeconds", "3"),
|
||||
|
||||
//每次挖到矿的概率--控制爆率
|
||||
new SettingDefinition("MiningMinProbability", "0.06"),
|
||||
|
||||
// new SettingDefinition("MiningMinProbability", "0.06"),
|
||||
new SettingDefinition("MiningMinProbability", "0.6"),
|
||||
|
||||
//交易税率--控制频繁交易
|
||||
new SettingDefinition("MarketTaxRate", "0.2")
|
||||
new SettingDefinition("MarketTaxRate", "0.02"),
|
||||
|
||||
|
||||
|
||||
//矿池刷新内容
|
||||
new SettingDefinition("PoolData", "60,24,10,3,1")
|
||||
|
||||
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user