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

switch default network to gaia-2 #402

Merged
merged 1 commit into from
Jan 26, 2018
Merged
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ brew install glide
# install gaia
go get github.com/cosmos/gaia
cd $GOPATH/src/github.com/cosmos/gaia
git checkout v0.4.0
git checkout v0.5.0
glide install
make install
```
Expand All @@ -44,7 +44,7 @@ yarn

### Develop

To run on the UI on the default testnet (`gaia-2-dev`):
To run on the UI on the default testnet (`gaia-2`):
```bash
$ yarn run testnet
```
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const NODE = process.env.COSMOS_NODE

// this network gets used if none is specified via the
// COSMOS_NETWORK env var
let DEFAULT_NETWORK = join(__dirname, '../networks/gaia-2-dev')
let DEFAULT_NETWORK = join(__dirname, '../networks/gaia-2')
let networkPath = process.env.COSMOS_NETWORK || DEFAULT_NETWORK

let SERVER_BINARY = 'gaia' + (WIN ? '.exe' : '')
Expand Down
2 changes: 1 addition & 1 deletion app/src/renderer/vuex/modules/blockchain.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import axios from 'axios'
export default ({ commit, node }) => {
const state = {
urlPrefix: 'https://',
blockchainName: 'gaia-2-dev',
blockchainName: 'gaia-2',
urlSuffix: '-node0.testnets.interblock.io',
status: {},
abciInfo: {},
Expand Down
2 changes: 1 addition & 1 deletion tasks/testnet.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async function get (url) {
}

async function main () {
let network = process.argv[2] || 'gaia-2-dev'
let network = process.argv[2] || 'gaia-2'

if (network === 'local') {
runDev('./app/networks/local')
Expand Down