Skip to content
This repository was archived by the owner on Dec 5, 2020. It is now read-only.

Commit

Permalink
Update param download location
Browse files Browse the repository at this point in the history
  • Loading branch information
CryptoForge committed Jan 14, 2020
1 parent 6274f70 commit 57fcf63
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions SimpleWallet/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.2.0")]
[assembly: AssemblyFileVersion("2.0.2.0")]
[assembly: AssemblyVersion("2.0.3.0")]
[assembly: AssemblyFileVersion("2.0.3.0")]
4 changes: 2 additions & 2 deletions SimpleWallet/executor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ public String executeMasternode(List<String> command, String dataToGet)
public bool checkParamsFile(String file1, String file2, String file3, String file4, String file5)
{
bool ret = false;
String webLink = "https://download.z.cash/downloads/";
String webLink = "https://files.zeromachine.io/";
String file1Link = webLink + file1;
String file2Link = webLink + file2;
String file3Link = webLink + file3;
Expand Down Expand Up @@ -443,7 +443,7 @@ public bool checkParamsFile(String file1, String file2, String file3, String fil
public bool downloadParams(String file, Types.DownloadFileType downloadType)
{
bool shouldDownload = false;
String webLink = "https://download.z.cash/downloads/";
String webLink = "https://files.zeromachine.io/";
String fileLink = webLink + file;
String appdata = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
String fileLoc = appdata + "\\ZcashParams\\" + file;
Expand Down
2 changes: 1 addition & 1 deletion SimpleWallet/types.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public delegate void DaemonEventHandler(object sender,
DaemonEventArgs e);
public class Types
{
public static String version = "Zero Simple Wallet - Version 2.0.2";
public static String version = "Zero Simple Wallet - Version 2.0.3";

public static String startCommandsFile = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) +
"\\zero\\simplewallet\\commands.dat";
Expand Down

0 comments on commit 57fcf63

Please sign in to comment.