Use lightwalletd.com public LWDs

This commit is contained in:
Francisco Gindre 2021-04-14 14:25:29 -03:00
parent 5c69aba7df
commit f454b1e5e8
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ class ZcashEnvironment {
static let `default`: ZcashEnvironment = try! ZcashEnvironment()
// you can spin up your own node and lightwalletd, check https://zcash.readthedocs.io/en/latest/rtd_pages/zcashd.html
let endpoint = LightWalletEndpoint(address: ZcashSDK.isMainnet ? "localhost" : "localhost", port: 9067, secure: true)
let endpoint = LightWalletEndpoint(address: ZcashSDK.isMainnet ? "mainnet.lightwalletd.com" : "testnet.lightwalletd.com", port: 9067, secure: true)
var synchronizer: CombineSynchronizer