Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions doc/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 0.8.5

- Updates `komodod` to [`e0f463a`](https://github.com/GLEECBTC/komodo-daemon/commit/e0f463a5e0fee7e7c8db7f1b46a2b89926abab96)
- Updates `tokeld` to [`96234b4`](https://github.com/TokelPlatform/tokel/commit/96234b46472d51bb0ea3c2ac31a150b7b8ff5f92)

## 0.8.4

Expand Down
15 changes: 13 additions & 2 deletions doc/update085.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,29 @@ Related Komodod pull request: https://github.com/GLEECBTC/komodo-daemon/pull/672
Related Komodod release: https://github.com/GLEECBTC/komodo-daemon/releases/tag/v0.9.2


### Stop, Update and restart KMD and all assetchains
### Stop, Update and restart KMD, TKL and all assetchains

```bash
# Rebuild KMD
komodo-cli stop # repeat for KMD 3P and all assetchains
cd ~/komodo
git pull
git checkout e0f463a
./zcutil/build.sh -j$(expr $(nproc) - 1)
source ~/dPoW/pubkey.txt
komodod -pubkey=${pubkey} # repeat for KMD 3P and all assetchains
komodod -pubkey=${pubkey} & # repeat for KMD 3P and all assetchains

# Rebuild TKL
komodo-cli -ac_name=TOKEL stop
cd ~/tokel
git pull
git checkout 96234b4
./zcutil/build.sh -j$(expr $(nproc) - 1)
source ~/dPoW/pubkey.txt
tokeld -pubkey=${pubkey} &
```


#### If using docker:
```bash
# Main server
Expand Down
Loading