Skip to content

Commit

Permalink
Merge pull request #1240 from cosmos/bucky/gaia-6002
Browse files Browse the repository at this point in the history
gaia 6002
  • Loading branch information
ebuchman authored Jun 13, 2018
2 parents 6967905 + 8acac90 commit c671181
Show file tree
Hide file tree
Showing 3 changed files with 1,479 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cmd/gaia/testnets/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Connect to the `gaia-6001` Testnet
# Connect to the `gaia-6002` Testnet

Note: We are aware this documentation is sub-par. We are working to
improve the tooling and the documentation to make this process as painless as
Expand All @@ -23,15 +23,15 @@ Next, let's install the testnet's version of the Cosmos SDK.
mkdir -p $GOPATH/src/github.com/cosmos
cd $GOPATH/src/github.com/cosmos
git clone https://github.com/cosmos/cosmos-sdk
cd cosmos-sdk && git checkout v0.18.0
cd cosmos-sdk && git checkout v0.19.0
make get_tools && make get_vendor_deps && make install
```

That will install the `gaiad` and `gaiacli` binaries. Verify that everything is OK:

```
gaiad version
0.18.0-eceb56b7
0.19.0-<commit>
```

### Node Setup
Expand Down Expand Up @@ -76,7 +76,7 @@ Now it is time to upgrade the software:

```
cd $GOPATH/src/github.com/cosmos/cosmos-sdk
git fetch --all && git checkout v0.18.0
git fetch --all && git checkout v0.19.0
make update_tools && make get_vendor_deps && make install
```

Expand All @@ -90,7 +90,7 @@ Copy the testnet's `genesis.json` file and place it in `gaiad`'s config director

```
mkdir -p $HOME/.gaiad/config
cp -a $GOPATH/src/github.com/cosmos/cosmos-sdk/cmd/gaia/testnets/gaia-6001/genesis.json $HOME/.gaiad/config/genesis.json
cp -a $GOPATH/src/github.com/cosmos/cosmos-sdk/cmd/gaia/testnets/gaia-6002/genesis.json $HOME/.gaiad/config/genesis.json
```

### Add Seed Nodes
Expand All @@ -99,7 +99,7 @@ Your node needs to know how to find peers. You'll need to add healthy seed nodes

```
# Comma separated list of seed nodes to connect to
seeds = "38aa9bec3998f12ae9088b21a2d910d19d565c27@gaia-6001.coinculture.net:46656,80a35a46ce09cfb31ee220c8141a25e73e0b239b@seed.cosmos.cryptium.ch:46656,80a35a46ce09cfb31ee220c8141a25e73e0b239b@35.198.166.171:46656,032fa56301de335d835057fb6ad9f7ce2242a66d@165.227.236.213:46656"
seeds = "38aa9bec3998f12ae9088b21a2d910d19d565c27@gaia-6002.coinculture.net:46656,80a35a46ce09cfb31ee220c8141a25e73e0b239b@seed.cosmos.cryptium.ch:46656,80a35a46ce09cfb31ee220c8141a25e73e0b239b@35.198.166.171:46656,032fa56301de335d835057fb6ad9f7ce2242a66d@165.227.236.213:46656"
```

You can also [ask other validators](https://riot.im/app/#/room/#cosmos_validators:matrix.org) for a persistent peer and add it under the `persistent_peers` key. For more information on seeds and peers, [read this](https://github.com/tendermint/tendermint/blob/develop/docs/using-tendermint.md#peers).
Expand Down
14 changes: 14 additions & 0 deletions cmd/gaia/testnets/STATUS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# TESTNET STATUS

## *June 13, 2018, 4:30 EST* - New Testnet Gaia-6002

- After fixing bugs from gaia-6001, especially [issue
#1197](https://github.com/cosmos/cosmos-sdk/issues/1197), we are announcing a
new testnet, Gaia-6002
- Gaia-6002 has the same genesis file as Gaia-6001, just with the chain-id
updated

## *June 13, 2018, 4:30 EST* - New Release

- Released gaia
[v0.19.0](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.19.0)
- Includes various bug-fixes for staking found on Gaia-6001

## *June 13, 2018, 2:30 EST* - Published Postmortem of Gaia-6001 failure

- A bug in the design of the staking data model caused a sanity check to fail
Expand Down
Loading

0 comments on commit c671181

Please sign in to comment.