From cedec0d4ccbab1876118a4820c1ac9706de6f889 Mon Sep 17 00:00:00 2001 From: benbierens Date: Thu, 12 Sep 2024 15:29:50 +0200 Subject: [PATCH] defaults for EC params that actually work --- Tools/AutoClient/Configuration.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Tools/AutoClient/Configuration.cs b/Tools/AutoClient/Configuration.cs index c97b397..3827149 100644 --- a/Tools/AutoClient/Configuration.cs +++ b/Tools/AutoClient/Configuration.cs @@ -19,11 +19,11 @@ namespace AutoClient [Uniform("contract-expiry", "ce", "CONTRACTEXPIRY", false, "contract expiry in minutes. (default 15 minutes)")] public int ContractExpiryMinutes { get; set; } = 15; - [Uniform("num-hosts", "nh", "NUMHOSTS", false, "Number of hosts for contract. (default 5)")] - public int NumHosts { get; set; } = 5; + [Uniform("num-hosts", "nh", "NUMHOSTS", false, "Number of hosts for contract. (default 10)")] + public int NumHosts { get; set; } = 10; - [Uniform("num-hosts-tolerance", "nt", "NUMTOL", false, "Number of host tolerance for contract. (default 2)")] - public int HostTolerance { get; set; } = 2; + [Uniform("num-hosts-tolerance", "nt", "NUMTOL", false, "Number of host tolerance for contract. (default 5)")] + public int HostTolerance { get; set; } = 5; [Uniform("price","p", "PRICE", false, "Price of contract. (default 10)")] public int Price { get; set; } = 10;