greatly reduces proof requirement for all autoclient contracts

This commit is contained in:
ThatBen 2025-06-23 10:25:50 +02:00
parent c00bc2f3cd
commit 870be0fe2e
No known key found for this signature in database
GPG Key ID: 62C543548433D43E

View File

@ -85,7 +85,7 @@ namespace AutoClient
private int GetProofProbability()
{
return r.Next(10, 100);
return 10000 + r.Next(10, 100);
}
}
}