Skip to content

Commit

Permalink
xs2c-0.5.0b
Browse files Browse the repository at this point in the history
- disabled block header pruning
  • Loading branch information
IxiAngel committed Jul 15, 2022
1 parent 2b2230c commit 4aba70a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion IxianS2/Meta/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class Config
public static string externalIp = "";

// Read-only values
public static readonly string version = "xs2c-0.5.0a"; // S2 Node version
public static readonly string version = "xs2c-0.5.0b"; // S2 Node version

public static readonly string checkVersionUrl = "https://www.ixian.io/s2-update.txt";
public static readonly int checkVersionSeconds = 6 * 60 * 60; // 6 hours
Expand Down
4 changes: 2 additions & 2 deletions IxianS2/Meta/Node.cs
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,10 @@ public void start(bool verboseConsoleOutput)
if (generatedNewWallet || !File.Exists(Config.walletFile))
{
generatedNewWallet = false;
tiv.start("");
tiv.start("", false, false);
}else
{
tiv.start("", 0, null, false);
tiv.start("", 0, null, false, false);
}

// Start the maintenance thread
Expand Down

0 comments on commit 4aba70a

Please sign in to comment.