-
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 #536 from KomodoPlatform/v0.7.10
Update VRSC, MCL and TKL
- Loading branch information
Showing
5 changed files
with
100 additions
and
7 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
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,87 @@ | ||
## dPoW 0.7.10 update information | ||
|
||
On your 3P node: | ||
|
||
- update your Verus Coin's codebase to [`f9abd80`](https://github.com/VerusCoin/VerusCoin/tree/f9abd801e22232d69e1ae4bf486e99264910e639), build it and then restart it. | ||
- update your Tokel codebase to [`28939c1`](https://github.com/TokelPlatform/tokel/tree/28939c11a574c9a98e35240890c64be0688c4f85), build it and then restart it. | ||
- update your Marmara codebase to [`4b73b24`](https://github.com/marmarachain/marmara/tree/4b73b246552723d1dec60be33636323239ba395d), build it and then restart it. | ||
|
||
### Update VSRC, TKL & MCL | ||
|
||
#### Using docker setup | ||
|
||
```bash | ||
cd notary_docker_3p | ||
git pull | ||
./update | ||
./start | ||
``` | ||
|
||
#### Using other setup | ||
|
||
- Build Verus Coin | ||
|
||
```bash | ||
vrsc_commit='f9abd80' | ||
cd ~/VerusCoin | ||
git pull | ||
git checkout ${vrsc_commit} | ||
./zcutil/build.sh -j$(expr $(nproc) - 1) | ||
``` | ||
|
||
- Restart it | ||
|
||
```bash | ||
cd ~/VerusCoin/src | ||
./verus stop | ||
source ~/dPoW/iguana/pubkey.txt | ||
./verusd -pubkey=$pubkey & | ||
``` | ||
|
||
- Build Tokel | ||
|
||
```bash | ||
tkl_commit='28939c1' | ||
cd ~/tokel | ||
git pull | ||
git checkout ${tkl_commit} | ||
./zcutil/build.sh -j$(expr $(nproc) - 1) | ||
``` | ||
|
||
- Restart it | ||
|
||
```bash | ||
cd ~/tokel/src | ||
./komodo-cli -ac_name=TOKEL stop | ||
source ~/dPoW/iguana/pubkey.txt | ||
./tokeld -pubkey=$pubkey & | ||
``` | ||
|
||
- Build Marmara | ||
|
||
```bash | ||
mcl_commit='4b73b24' | ||
cd ~/marmara | ||
git pull | ||
git checkout ${mcl_commit} | ||
./zcutil/build.sh -j$(expr $(nproc) - 1) | ||
``` | ||
|
||
- Restart it | ||
|
||
```bash | ||
cd ~/marmara/src | ||
./komodo-cli -ac_name=MCL stop | ||
source ~/dPoW/iguana/pubkey.txt | ||
./mamarad -pubkey=$pubkey & | ||
``` | ||
|
||
#### Update your dPoW repo | ||
|
||
```bash | ||
cd ~/dPoW | ||
git checkout master | ||
git pull | ||
``` | ||
|
||
Once complete, monitor your node to ensure it is running correctly and 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.7.9 | ||
0.7.10 |