diff --git a/app/components/LoadingScreen.js b/app/components/LoadingScreen.js index c45fb3d6..8fa1581f 100644 --- a/app/components/LoadingScreen.js +++ b/app/components/LoadingScreen.js @@ -174,7 +174,7 @@ class LoadingScreen extends Component { loadServerURI = () => { // Try to read the default server const store = new Store(); - const server = store.get('lightd/serveruri', 'https://lightwalletd.zecwallet.co:1443'); + const server = store.get('lightd/serveruri', 'https://lwdv2.zecwallet.co:1443'); const newstate = new LoadingScreenState(); Object.assign(newstate, this.state); diff --git a/app/components/ServerSelectModal.js b/app/components/ServerSelectModal.js index 50e672d5..fc0cce2e 100644 --- a/app/components/ServerSelectModal.js +++ b/app/components/ServerSelectModal.js @@ -33,7 +33,7 @@ export default function ServerSelectModal({ modalIsOpen, closeModal, openErrorMo }; const servers = [ - { name: 'Zecwallet (Default)', uri: 'https://lightwalletd.zecwallet.co:1443' }, + { name: 'Zecwallet (Default)', uri: 'https://lwdv2.zecwallet.co:1443' }, { name: 'Zecwallet (Backup)', uri: 'https://lightd-main.zecwallet.co:443' }, { name: 'ZcashFR (Community)', uri: 'https://lightd-main.zcashfr.io:443' } ];