Switch 0.22 references to 0.23

This commit is contained in:
Christopher Goes 2018-07-20 00:24:43 +02:00
parent 6a742c8773
commit 7bb775aa8a

View File

@ -29,7 +29,7 @@ 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.22.0
cd cosmos-sdk && git checkout v0.23.0
make get_tools && make get_vendor_deps && make install
```
@ -37,10 +37,10 @@ That will install the `gaiad` and `gaiacli` binaries. Verify that everything is
```bash
$ gaiad version
0.22.0
0.23.0
$ gaiacli version
0.22.0
0.23.0
```
### Node Setup
@ -97,7 +97,7 @@ Now it is time to upgrade the software:
```bash
cd $GOPATH/src/github.com/cosmos/cosmos-sdk
git fetch --all && git checkout v0.22.0
git fetch --all && git checkout v0.23.0
make update_tools && make get_vendor_deps && make install
```