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

chore: v0.27 minor migration guide edits #2054

Merged
merged 2 commits into from
Nov 12, 2024
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
8 changes: 4 additions & 4 deletions migrate/v0_27/migrate.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,26 +31,26 @@ Please reference the [RocksDB repository](https://github.com/facebook/rocksdb/tr

Node operators using rocksdb are encouraged to [use `tcmalloc` as their memory allocator](https://github.com/Kava-Labs/kava/blob/v0.26.2-iavl-v1/migrate/v0_26/iavl-v1.md#default-memory-allocator).

### On the day of the upgrade
## On the day of the upgrade

The kava chain is expected to halt at block height **12766500**. **Do not stop your node and begin the upgrade before the upgrade height**, or you may go offline and be unable to recover until after the upgrade!

**Make sure the kava process is stopped before proceeding and that you have backed up your validator**. Failure to backup your validator could make it impossible to restart your node if the upgrade fails.

**Ensure you are using golang 1.22.7+ and not a different version.** Golang 1.22.6 and below is not compatible and may cause app hash mismatches!
**Ensure you are using golang 1.22.7+ and not a different version.** Golang 1.22.6 and below may cause app hash mismatches!

To update to v0.27.0

```sh
# check go version - look for 1.22!
# check go version - look for 1.22.7+!
go version
# go version go1.22.9 linux/amd64

# in the `kava` folder
git fetch
git checkout v0.27.0

# Note: Golang 1.22 must be installed before this step
# Note: Golang 1.22.7+ must be installed before this step
make install

# verify versions
Expand Down
Loading