Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #675

Merged
merged 2 commits into from
Aug 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@ sudo apt update -y; sudo apt upgrade -y
sudo apt install -y jq git build-essential
```

Install Go. Use the 19.x series version.
Install Go. Use the 20.x series version.

```bash
$ wget https://go.dev/dl/go1.19.2.linux-amd64.tar.gz
$ sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.19.2.linux-amd64.tar.gz
$ wget https://go.dev/dl/go1.20.linux-amd64.tar.gz
$ sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.20.linux-amd64.tar.gz
$ vim ~/.bashrc
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
$ source ~/.bashrc
$ go version
go version go1.19.2 linux/amd64
go version go1.20 linux/amd64
```

Clone the UnUniFi blockchain repository, check out the given branch, and build it with `make install` to build binaries.

```bash
git clone https://github.com/UnUniFi/chain chain_repo
cd chain_repo
git checkout v2.2.0
git checkout v3.2.0
git pull
make install
```
Expand Down
Loading