-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #582 from KomodoPlatform/dev
- Loading branch information
Showing
10 changed files
with
82 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# Changelog | ||
|
||
## 0.8.4 | ||
|
||
- Removes `DOC`, `MARTY` from dPoW | ||
|
||
## 0.8.3 | ||
|
||
- Adds `BCZERO`, `RAPH`, `MDX` chains to dPoW | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# dPoW 0.8.4 update information | ||
|
||
The primary purpose of this update is to reduce resource usage on Notary Node mainnet servers by removing the test chains `DOC` and `MARTY` from dPoW. However, these chains will remain operational for testing purposes within the Komodo Wallet and the Komodo DeFi Framework (KDF). This means removing them from your servers is optional and at your discretion. | ||
|
||
This update specifically removes the `DOC` and `MARTY` chains from dPoW, meaning they will no longer be processed by `iguana`. Regarding the Komodo core daemon (`komodod`), if your server’s resources allow, you can continue running `komodod` for these chains to assist with block propagation and other related tasks. | ||
|
||
### Stop and remove `DOC` & `MARTY` (optional) | ||
|
||
```bash | ||
komodo-cli -ac_name=DOC stop | ||
komodo-cli -ac_name=MARTY stop | ||
rm -rf ~/.komodo/DOC | ||
rm -rf ~/.komodo/MARTY | ||
``` | ||
|
||
### Restart Iguana | ||
|
||
```bash | ||
# Update dPoW repo | ||
cd ~/dPoW | ||
git checkout master | ||
git pull | ||
|
||
# Restart Iguana | ||
pkill -9 iguana # Note: This command may also terminate 3P Iguana if it is running on the same server. | ||
cd iguana | ||
./m_notary_build | ||
./m_notary_main | ||
``` | ||
|
||
Make sure notarisations are progressing. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.8.3 | ||
0.8.4 |