docs/tutorials: specify 0.34 (#5823)

# Description

Specify 0.34 for tutorials.

Closes: #5735
This commit is contained in:
Marko
2020-12-21 09:39:07 -08:00
committed by GitHub
parent dc101f2eff
commit 829a9e1de7
2 changed files with 39 additions and 6 deletions

View File

@@ -586,10 +586,27 @@ dependency management.
```bash
go mod init github.com/me/example
go build
go get github.com/tendermint/tendermint/@v0.34.0
```
This should build the binary.
After running the above commands you will see two generated files, go.mod and go.sum. The go.mod file should look similar to:
```go
module github.com/me/example
go 1.15
require (
github.com/dgraph-io/badger v1.6.2
github.com/tendermint/tendermint v0.34.0
)
```
Finally, we will build our binary:
```sh
go build
```
To create a default configuration, nodeKey and private validator files, let's
execute `tendermint init`. But before we do that, we will need to install

View File

@@ -43,7 +43,7 @@ Verify that you have the latest version of Go installed:
```bash
$ go version
go version go1.14.x darwin/amd64
go version go1.15.x darwin/amd64
```
Make sure you have `$GOPATH` environment variable set:
@@ -442,12 +442,28 @@ We are going to use [Go modules](https://github.com/golang/go/wiki/Modules) for
dependency management.
```bash
export GO111MODULE=on
go mod init github.com/me/example
go build
go get github.com/tendermint/tendermint/@v0.34.0
```
This should build the binary.
After running the above commands you will see two generated files, go.mod and go.sum. The go.mod file should look similar to:
```go
module github.com/me/example
go 1.15
require (
github.com/dgraph-io/badger v1.6.2
github.com/tendermint/tendermint v0.34.0
)
```
Finally, we will build our binary:
```sh
go build
```
To create a default configuration, nodeKey and private validator files, let's
execute `tendermint init`. But before we do that, we will need to install