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

note and fix for local testnet #300

Merged
merged 3 commits into from
Jan 2, 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
7 changes: 6 additions & 1 deletion 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 develop
git checkout v0.4.0
glide install
make install
```
Expand Down Expand Up @@ -54,6 +54,11 @@ To run the UI on a specific a testnet from the [testnets](https://github.com/ten
$ yarn run testnet <networkName>
```

To run the UI on a local node with `chain_id=local`:
```bash
$ yarn run testnet local
```

To run the UI with a mocked backend (without connecting to a testnet):
```bash
$ yarn run uionly
Expand Down
2 changes: 1 addition & 1 deletion app/networks/local/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ create_empty_blocks_interval = 1
#send_rate=51200000 # 50 MB/s
#recv_rate=51200000 # 50 MB/s
laddr = "tcp://127.0.0.1:46656"
seeds = ""
seeds = "0.0.0.0:46656"