From 57fcf635a35eb6e1253eaf93c8f4abf353bcea1b Mon Sep 17 00:00:00 2001 From: CryptoForge Date: Mon, 13 Jan 2020 19:36:44 -0800 Subject: [PATCH] Update param download location --- SimpleWallet/Properties/AssemblyInfo.cs | 4 ++-- SimpleWallet/executor.cs | 4 ++-- SimpleWallet/types.cs | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/SimpleWallet/Properties/AssemblyInfo.cs b/SimpleWallet/Properties/AssemblyInfo.cs index adab5b9..223b5d9 100644 --- a/SimpleWallet/Properties/AssemblyInfo.cs +++ b/SimpleWallet/Properties/AssemblyInfo.cs @@ -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")] diff --git a/SimpleWallet/executor.cs b/SimpleWallet/executor.cs index d5f9429..1dd3b46 100644 --- a/SimpleWallet/executor.cs +++ b/SimpleWallet/executor.cs @@ -324,7 +324,7 @@ public String executeMasternode(List 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; @@ -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; diff --git a/SimpleWallet/types.cs b/SimpleWallet/types.cs index d21f279..139fda7 100644 --- a/SimpleWallet/types.cs +++ b/SimpleWallet/types.cs @@ -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";