From 2ef4abd4986d03093de17450226687072fb2e1ab Mon Sep 17 00:00:00 2001 From: Francisco Gindre Date: Fri, 4 Sep 2020 14:38:23 -0300 Subject: [PATCH] remove wrong server --- .../ZcashLightClientSample/DemoAppConfig.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Example/ZcashLightClientSample/ZcashLightClientSample/DemoAppConfig.swift b/Example/ZcashLightClientSample/ZcashLightClientSample/DemoAppConfig.swift index 7304d1d1..d0e88557 100644 --- a/Example/ZcashLightClientSample/ZcashLightClientSample/DemoAppConfig.swift +++ b/Example/ZcashLightClientSample/ZcashLightClientSample/DemoAppConfig.swift @@ -10,7 +10,7 @@ import Foundation import ZcashLightClientKit import MnemonicSwift struct DemoAppConfig { - static var host = ZcashSDK.isMainnet ? "lightwalletd.electriccoin.co" : "lightwalletd.testnet.electriccoin.co" + static var host = ZcashSDK.isMainnet ? "localhost" : "localhost" static var port: Int = 9067 static var birthdayHeight: BlockHeight = ZcashSDK.isMainnet ? 663174 : 620_000 static var network = ZcashSDK.isMainnet ? ZcashNetwork.mainNet : ZcashNetwork.testNet