Make sapling parameters default url public

This commit is contained in:
Francisco Gindre 2021-06-23 13:38:50 -03:00
parent 2b17bacf05
commit 9bdf6cbae3
1 changed files with 2 additions and 2 deletions

View File

@ -109,11 +109,11 @@ public class SaplingParameterDownloader {
(try? FileManager.default.attributesOfItem(atPath: url.path)) != nil
}
static var spendParamsURLString: String {
public static var spendParamsURLString: String {
return ZcashSDK.CLOUD_PARAM_DIR_URL + ZcashSDK.SPEND_PARAM_FILE_NAME
}
static var outputParamsURLString: String {
public static var outputParamsURLString: String {
return ZcashSDK.CLOUD_PARAM_DIR_URL + ZcashSDK.OUTPUT_PARAM_FILE_NAME
}
}