Skip to content

Commit 07810e4

Browse files
committed
fixed a mistake in test definition
1 parent 8559c7f commit 07810e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Nethermind/Ethereum.Difficulty.Test/DifficultyFrontierTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public static IEnumerable<DifficultyTests> LoadFrontierTests()
3535
[TestCaseSource(nameof(LoadFrontierTests))]
3636
public void Test(DifficultyTests test)
3737
{
38-
RunTest(test, new SingleReleaseSpecProvider(Berlin.Instance, 1));
38+
RunTest(test, new SingleReleaseSpecProvider(Frontier.Instance, 1));
3939
}
4040
}
4141
}

src/Nethermind/Nethermind.Core/Version.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ static ClientVersion()
3737
string gitHash = File.Exists("git-hash") ? File.ReadAllText("git-hash") : string.Empty;
3838
gitHash = Regex.Match(gitHash, "\\-g(\\w+)").Groups[1].Value;
3939

40-
Description = $"Nethermind/v1.2.1-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}";
40+
Description = $"Nethermind/v1.2.2-{gitHash}/{RuntimeInformation.OSArchitecture}-{osDescription}/{RuntimeInformation.FrameworkDescription.Trim().Replace(".NET ", "").Replace(" ", "")}";
4141
}
4242

4343
public static string Description { get; }

0 commit comments

Comments
 (0)