Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version to 0.38.2 #5850

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions UnstoppableWallet/UnstoppableWallet.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -12732,7 +12732,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 0.38;
MARKETING_VERSION = 0.38.2;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
OfficeMode = true;
Expand Down Expand Up @@ -12804,7 +12804,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 0.38;
MARKETING_VERSION = 0.38.2;
MTL_ENABLE_DEBUG_INFO = NO;
OfficeMode = false;
SDKROOT = iphoneos;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import UIKit
import ZcashLightClientKit

class ZcashAdapter {
private static let endPoint = "mainnet.lightwalletd.com" // "lightwalletd.electriccoin.co"
private static let endPoint = "zec.rocks" // "lightwalletd.electriccoin.co"
private let queue = DispatchQueue(label: "\(AppConfig.label).zcash-adapter", qos: .userInitiated)

private var cancellables: [AnyCancellable] = []
Expand Down Expand Up @@ -66,7 +66,8 @@ class ZcashAdapter {
private(set) var syncing: Bool = true

init(wallet: Wallet, restoreSettings: RestoreSettings) throws {
logger = App.shared.logger.scoped(with: "ZCashKit") // HsToolKit.Logger(minLogLevel: .debug) //
logger = App.shared.logger.scoped(with: "ZCashKit")
// HsToolKit.Logger(minLogLevel: .debug)

guard let seed = wallet.account.type.mnemonicSeed else {
throw AdapterError.unsupportedAccount
Expand Down Expand Up @@ -501,7 +502,7 @@ extension ZcashAdapter {
fsBlockDbRoot: fsBlockDbRootURL(uniqueId: uniqueId, network: network),
generalStorageURL: generalStorageURL(uniqueId: uniqueId, network: network),
dataDbURL: dataDbURL(uniqueId: uniqueId, network: network),
endpoint: LightWalletEndpoint(address: endPoint, port: 9067, secure: true, streamingCallTimeoutInMillis: 10 * 60 * 60 * 1000),
endpoint: LightWalletEndpoint(address: endPoint, port: 443, secure: true, streamingCallTimeoutInMillis: 10 * 60 * 60 * 1000),
network: network,
spendParamsURL: spendParamsURL(uniqueId: uniqueId),
outputParamsURL: outputParamsURL(uniqueId: uniqueId),
Expand Down
Loading