diff --git a/src/App.js b/src/App.js index f55c915..c56c865 100644 --- a/src/App.js +++ b/src/App.js @@ -222,7 +222,7 @@ class App extends Component { if (this.state.network === 'main') this.explorerAPI = 'https://explore.energi.network/api/'; else if (this.state.network === 'test') this.explorerAPI = 'http://explore.test.energi.network/api/'; - else if (this.state.network === 'test60x') this.explorerAPI = 'http://explore.test60x.energi.network/api/'; + //else if (this.state.network === 'test60x') this.explorerAPI = 'http://explore.test60x.energi.network/api/'; else this.setError("Invalid network"); fetchBlockchainInfo(); @@ -257,7 +257,7 @@ class App extends Component { document.title = "Energi Proposal Creator"; - this.updateNetwork('test60x'); + this.updateNetwork('main'); } setError(errStr) diff --git a/src/SelectNetwork.js b/src/SelectNetwork.js index 9bbf218..ba3a38f 100644 --- a/src/SelectNetwork.js +++ b/src/SelectNetwork.js @@ -8,8 +8,8 @@ class SelectNetwork extends Component getNetworks() { let htmlOptionTags = []; - //htmlOptionTags.push(); - htmlOptionTags.push(); + htmlOptionTags.push(); + //htmlOptionTags.push(); htmlOptionTags.push(); return htmlOptionTags; }