Skip to content

Commit 04aa205

Browse files
authored
Make the folder name for data lowercase (#302)
- Lowercase is preferred for these data folders. The "Main" folder is capitalized though, but that's consistent.
1 parent 19596af commit 04aa205

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Networks/Blockcore.Networks.XRC/XRCMain.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ public class XRCMain : Network
2929
public const int xRhodiumDefaultMaxTipAgeInSeconds = 604800;
3030

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

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

3737
public XRCMain()
3838
{

0 commit comments

Comments
 (0)