-
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 #571 from KomodoPlatform/dev
- Loading branch information
Showing
10 changed files
with
87 additions
and
41 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
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,17 +1,15 @@ | ||
{ | ||
"KMD": "bf8ace3", | ||
"KMD": "2651eaf", | ||
"LTC": "0.16", | ||
"CCL": "bf8ace3", | ||
"CLC": "bf8ace3", | ||
"DOC": "bf8ace3", | ||
"GLEEC": "bf8ace3", | ||
"ILN": "bf8ace3", | ||
"KOIN": "bf8ace3", | ||
"MARTY": "bf8ace3", | ||
"NINJA": "bf8ace3", | ||
"PIRATE": "bf8ace3", | ||
"SUPERNET": "bf8ace3", | ||
"THC": "bf8ace3", | ||
"CCL": "2651eaf", | ||
"CLC": "2651eaf", | ||
"DOC": "2651eaf", | ||
"GLEEC": "2651eaf", | ||
"ILN": "2651eaf", | ||
"KOIN": "2651eaf", | ||
"MARTY": "2651eaf", | ||
"PIRATE": "2651eaf", | ||
"THC": "2651eaf", | ||
"MCL": "7938b2c", | ||
"TOKEL": "b97260d" | ||
} |
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,60 @@ | ||
# dPoW 0.8.1 update information | ||
|
||
### Stop and remove `SUPERNET` & `NINJA` | ||
|
||
```bash | ||
komodo-cli -ac_name=SUPERNET stop | ||
komodo-cli -ac_name=NINJA stop | ||
rm -rf ~/.komodo/SUPERNET | ||
rm -rf ~/.komodo/NINJA | ||
``` | ||
|
||
### Prepare GLEEC_OLD datafolder by create a symlink (mandatory) | ||
|
||
ln -s -f $HOME/.komodo/GLEEC_OLD/GLEEC.conf $HOME/.komodo/GLEEC_OLD/GLEEC_OLD.conf | ||
|
||
### Update `komodod` on main node | ||
|
||
```bash | ||
cd ~/komodo/ | ||
git fetch --all | ||
git checkout 2651eaf | ||
./zcutil/build.sh -j$(nproc) | ||
``` | ||
|
||
### Restart the old GLEEC chain | ||
|
||
```bash | ||
komodo-cli -ac_name=GLEEC -datadir=$HOME/.komodo/GLEEC_OLD stop; sleep 5 | ||
~/dPoW/iguana/checkGLEEC.sh # check the GLEEC installation | ||
source pubkey.txt | ||
komodod -ac_name=GLEEC -ac_supply=210000000 -ac_public=1 -ac_staked=100 -datadir=${HOME}/.komodo/GLEEC_OLD -addnode=95.217.161.126 -addnode=209.222.101.247 -addnode=103.195.100.32 & | ||
``` | ||
|
||
### Make sure the old GLEEC chain is running smoothly and has caught up with the latest notarizations | ||
```bash | ||
komodo-cli -ac_name=GLEEC -datadir=$HOME/.komodo/GLEEC_OLD getinfo | ||
# It should look like this: https://github.com/KomodoPlatform/komodo/pull/637#issue-2586189960 | ||
# i.e., the notarized block height should be close to the longest chain, and the name should be GLEEC_OLD. | ||
``` | ||
|
||
This ensures the old GLEEC chain is functioning as expected and is up-to-date with notarizations. | ||
|
||
### Restart Iguana | ||
|
||
```bash | ||
# Update dPoW repo | ||
cd ~/dPoW | ||
git checkout master | ||
git pull | ||
|
||
# Restart Iguana | ||
pkill -9 iguana | ||
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.
Oops, something went wrong.