Skip to content

Commit

Permalink
Make the folder name for data lowercase (#302)
Browse files Browse the repository at this point in the history
- Lowercase is preferred for these data folders. The "Main" folder is capitalized though, but that's consistent.
  • Loading branch information
sondreb authored Mar 9, 2021
1 parent 19596af commit 04aa205
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Networks/Blockcore.Networks.XRC/XRCMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ public class XRCMain : Network
public const int xRhodiumDefaultMaxTipAgeInSeconds = 604800;

/// <summary> The name of the root folder containing the different xRhodium blockchains (xRhodiumMain, xRhodiumTest, xRhodiumRegTest). </summary>
public const string xRhodiumRootFolderName = "xRhodium";
public const string xRhodiumRootFolderName = "xrhodium";

/// <summary> The default name used for the xRhodium configuration file. </summary>
public const string xRhodiumDefaultConfigFilename = "xRhodium.conf";
public const string xRhodiumDefaultConfigFilename = "xrhodium.conf";

public XRCMain()
{
Expand Down

0 comments on commit 04aa205

Please sign in to comment.