From 5dbaaaee0f8ca1fa8d939766d1fb5445254e6e43 Mon Sep 17 00:00:00 2001 From: Eric <5089238+emizzle@users.noreply.github.com> Date: Thu, 14 Sep 2023 15:17:30 +1000 Subject: [PATCH] replace tab chars with spaces --- DistTestCore/Codex/CodexContainerRecipe.cs | 4 ++-- DistTestCore/CodexSetup.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DistTestCore/Codex/CodexContainerRecipe.cs b/DistTestCore/Codex/CodexContainerRecipe.cs index 4d3570e..fb38195 100644 --- a/DistTestCore/Codex/CodexContainerRecipe.cs +++ b/DistTestCore/Codex/CodexContainerRecipe.cs @@ -16,7 +16,7 @@ namespace DistTestCore.Codex public override string AppName => "codex"; public override string Image { get; } - + public CodexContainerRecipe() { Image = GetDockerImage(); @@ -75,7 +75,7 @@ namespace DistTestCore.Codex AddPodAnnotation("prometheus.io/port", metricsPort.Number.ToString()); } - if (config.SimulateProofFailures != null) + if (config.SimulateProofFailures != null) { AddEnvVar("CODEX_SIMULATE_PROOF_FAILURES", config.SimulateProofFailures.ToString()!); } diff --git a/DistTestCore/CodexSetup.cs b/DistTestCore/CodexSetup.cs index 3e7bd8c..e421aa9 100644 --- a/DistTestCore/CodexSetup.cs +++ b/DistTestCore/CodexSetup.cs @@ -24,7 +24,7 @@ namespace DistTestCore ICodexSetup EnableMarketplace(TestToken initialBalance); ICodexSetup EnableMarketplace(TestToken initialBalance, Ether initialEther); ICodexSetup EnableMarketplace(TestToken initialBalance, Ether initialEther, bool isValidator); - /// + /// /// Provides an invalid proof every N proofs /// ICodexSetup WithSimulateProofFailures(uint failEveryNProofs);