Skip to content

Commit c671181

Browse files
authored
Merge pull request #1240 from cosmos/bucky/gaia-6002
gaia 6002
2 parents 6967905 + 8acac90 commit c671181

File tree

3 files changed

+1479
-6
lines changed

3 files changed

+1479
-6
lines changed

cmd/gaia/testnets/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Connect to the `gaia-6001` Testnet
1+
# Connect to the `gaia-6002` Testnet
22

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

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

3232
```
3333
gaiad version
34-
0.18.0-eceb56b7
34+
0.19.0-<commit>
3535
```
3636

3737
### Node Setup
@@ -76,7 +76,7 @@ Now it is time to upgrade the software:
7676

7777
```
7878
cd $GOPATH/src/github.com/cosmos/cosmos-sdk
79-
git fetch --all && git checkout v0.18.0
79+
git fetch --all && git checkout v0.19.0
8080
make update_tools && make get_vendor_deps && make install
8181
```
8282

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

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

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

100100
```
101101
# Comma separated list of seed nodes to connect to
102-
seeds = "38aa9bec3998f12ae9088b21a2d910d19d565c27@gaia-6001.coinculture.net:46656,[email protected]:46656,[email protected]:46656,[email protected]:46656"
102+
seeds = "38aa9bec3998f12ae9088b21a2d910d19d565c27@gaia-6002.coinculture.net:46656,[email protected]:46656,[email protected]:46656,[email protected]:46656"
103103
```
104104

105105
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).

cmd/gaia/testnets/STATUS.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# TESTNET STATUS
22

3+
## *June 13, 2018, 4:30 EST* - New Testnet Gaia-6002
4+
5+
- After fixing bugs from gaia-6001, especially [issue
6+
#1197](https://github.com/cosmos/cosmos-sdk/issues/1197), we are announcing a
7+
new testnet, Gaia-6002
8+
- Gaia-6002 has the same genesis file as Gaia-6001, just with the chain-id
9+
updated
10+
11+
## *June 13, 2018, 4:30 EST* - New Release
12+
13+
- Released gaia
14+
[v0.19.0](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.19.0)
15+
- Includes various bug-fixes for staking found on Gaia-6001
16+
317
## *June 13, 2018, 2:30 EST* - Published Postmortem of Gaia-6001 failure
418

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

0 commit comments

Comments
 (0)