Skip to content

Commit

Permalink
Use PascalCase for 'GenerateValidConfigOptionsHash' method name
Browse files Browse the repository at this point in the history
  • Loading branch information
wugalde19 committed Aug 20, 2024
1 parent 40da8a2 commit db39f9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Nethermind/Nethermind.Runner/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ private static string GetProductInfo()
return info.ToString();
}

private static HashSet<string> generateValidConfigOptionsHash()
private static HashSet<string> GenerateValidConfigOptionsHash()
{
// Initialize with the default options
var options = new HashSet<string>
Expand Down Expand Up @@ -650,7 +650,7 @@ private static HashSet<string> generateValidConfigOptionsHash()
private static bool ValidateArguments(string[] args)
{
// Get all valid options from the configuration files
var validParameters = generateValidConfigOptionsHash();
var validParameters = GenerateValidConfigOptionsHash();

foreach (var arg in args)
{
Expand Down

0 comments on commit db39f9e

Please sign in to comment.