2
0
mirror of synced 2025-02-02 19:53:29 +00:00

argument order error

This commit is contained in:
Ben 2024-07-23 10:29:01 +02:00
parent af7aeb2bba
commit 5ba919a638
No known key found for this signature in database
GPG Key ID: 0F16E812E736C24B

View File

@ -44,7 +44,7 @@ public static class Program
for (var i = 0; i < config.NumConcurrentPurchases; i++)
{
purchasers.Add(
new Purchaser(new LogPrefixer(log, $"({i}) "), client, address, codex, cancellationToken, config, imgGenerator)
new Purchaser(new LogPrefixer(log, $"({i}) "), client, address, codex, config, imgGenerator, cancellationToken)
);
}