replace tab chars with spaces

This commit is contained in:
Eric 2023-09-14 15:17:30 +10:00
parent fd012196f8
commit 5dbaaaee0f
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -75,7 +75,7 @@ namespace DistTestCore.Codex
AddPodAnnotation("prometheus.io/port", metricsPort.Number.ToString()); AddPodAnnotation("prometheus.io/port", metricsPort.Number.ToString());
} }
if (config.SimulateProofFailures != null) if (config.SimulateProofFailures != null)
{ {
AddEnvVar("CODEX_SIMULATE_PROOF_FAILURES", config.SimulateProofFailures.ToString()!); AddEnvVar("CODEX_SIMULATE_PROOF_FAILURES", config.SimulateProofFailures.ToString()!);
} }

View File

@ -24,7 +24,7 @@ namespace DistTestCore
ICodexSetup EnableMarketplace(TestToken initialBalance); ICodexSetup EnableMarketplace(TestToken initialBalance);
ICodexSetup EnableMarketplace(TestToken initialBalance, Ether initialEther); ICodexSetup EnableMarketplace(TestToken initialBalance, Ether initialEther);
ICodexSetup EnableMarketplace(TestToken initialBalance, Ether initialEther, bool isValidator); ICodexSetup EnableMarketplace(TestToken initialBalance, Ether initialEther, bool isValidator);
/// <summary> /// <summary>
/// Provides an invalid proof every N proofs /// Provides an invalid proof every N proofs
/// </summary> /// </summary>
ICodexSetup WithSimulateProofFailures(uint failEveryNProofs); ICodexSetup WithSimulateProofFailures(uint failEveryNProofs);