Skip to content

Commit

Permalink
xlwc-0.7.6a
Browse files Browse the repository at this point in the history
- stress test improvements
  • Loading branch information
IxiAngel committed Dec 26, 2020
1 parent 33488c4 commit 5ae8eea
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions IxianLiteWallet/Commands/Commands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,22 @@ void handleStress(string line)
}

stressTargetTps = Int32.Parse(split[1]);
if(stressTargetTps > 50)
{
stressTargetTps = 50;
}

stressTxCount = Int32.Parse(split[2]);
if(stressTxCount > 10000)
{
stressTxCount = 10000;
}

if (stressRunning == true)
{
return;
}

byte[] to = Base58Check.Base58CheckEncoding.DecodePlain(split[3]);

new Thread(() =>
Expand Down
2 changes: 1 addition & 1 deletion IxianLiteWallet/Meta/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ class Config
public static string walletFile = "ixian.wal";
public static bool onlyShowAddresses = false;

public static readonly string version = "xlwc-0.7.6"; // LiteWallet version
public static readonly string version = "xlwc-0.7.6a"; // LiteWallet version
}
}

0 comments on commit 5ae8eea

Please sign in to comment.