Browse Source

docs/tutorials: specify 0.34 (#5823)

# Description

Specify 0.34 for tutorials.

Closes: #5735
pull/5830/head
Marko 3 years ago
committed by GitHub
parent
commit
829a9e1de7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 6 deletions
  1. +19
    -2
      docs/tutorials/go-built-in.md
  2. +20
    -4
      docs/tutorials/go.md

+ 19
- 2
docs/tutorials/go-built-in.md 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


+ 20
- 4
docs/tutorials/go.md 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
```
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
)
```
This should build the binary.
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


Loading…
Cancel
Save