From 65bcce9ff2523771c47381b36e2efa040fa6475f Mon Sep 17 00:00:00 2001 From: gcharang <21151592+gcharang@users.noreply.github.com> Date: Wed, 24 Jan 2024 20:18:14 +0530 Subject: [PATCH] dpow update 712 --- README.md | 2 +- doc/changelog.md | 4 ++++ doc/daemon_versions.json | 2 +- doc/update0712.md | 47 ++++++++++++++++++++++++++++++++++++++++ iguana/version | 2 +- 5 files changed, 54 insertions(+), 3 deletions(-) create mode 100644 doc/update0712.md diff --git a/README.md b/README.md index 88133321..cef32085 100755 --- a/README.md +++ b/README.md @@ -74,4 +74,4 @@ General [Setup instructions](https://github.com/KomodoPlatform/Documentation/blo | MCL | [marmarachain](https://github.com/marmarachain/marmara) | [4b73b24](https://github.com/marmarachain/marmara/tree/4b73b246552723d1dec60be33636323239ba395d) | [![dPOW Status](https://badges.komodo.earth/svg/MCL_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3p | | MIL | [mil](https://github.com/emc2foundation/mil) | [5df2e4d](https://github.com/emc2foundation/mil/tree/5df2e4d569e546c71e730aa85ad2a0813f3b6369) | [![dPOW Status](https://badges.komodo.earth/svg/MIL_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3P | | TOKEL | [tokel](https://github.com/TokelPlatform/tokel) | [28939c1](https://github.com/TokelPlatform/tokel/tree/28939c11a574c9a98e35240890c64be0688c4f85) | [![dPOW Status](https://badges.komodo.earth/svg/TOKEL_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3P | -| VRSC | [verus](https://github.com/VerusCoin/VerusCoin) | [8a060c6](https://github.com/VerusCoin/VerusCoin/tree/8a060c63b5b1d8295b754080e0f07966b09776d3) | [![dPOW Status](https://badges.komodo.earth/svg/VRSC_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3P | +| VRSC | [verus](https://github.com/VerusCoin/VerusCoin) | [1121528](https://github.com/VerusCoin/VerusCoin/tree/11215289254c490b2ed146612e1504376d0964eb) | [![dPOW Status](https://badges.komodo.earth/svg/VRSC_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3P | diff --git a/doc/changelog.md b/doc/changelog.md index d659283a..b435d472 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -1,5 +1,9 @@ # Changelog +## 0.7.12 + +- Updates VRSC to [`1121528`](https://github.com/VerusCoin/VerusCoin/commit/11215289254c490b2ed146612e1504376d0964eb) + ## 0.7.11 - Updates VRSC to [`8a060c6`](https://github.com/VerusCoin/VerusCoin/commit/8a060c63b5b1d8295b754080e0f07966b09776d3) diff --git a/doc/daemon_versions.json b/doc/daemon_versions.json index f968c454..32e27431 100644 --- a/doc/daemon_versions.json +++ b/doc/daemon_versions.json @@ -18,5 +18,5 @@ "MCL": "4b73b24", "MIL": "5df2e4d", "TOKEL": "28939c1", - "VRSC": "8a060c6" + "VRSC": "1121528" } \ No newline at end of file diff --git a/doc/update0712.md b/doc/update0712.md new file mode 100644 index 00000000..2825adf6 --- /dev/null +++ b/doc/update0712.md @@ -0,0 +1,47 @@ +## dPoW 0.7.11 update information + +On your 3P node: + +- update your Verus Coin's codebase to [`1121528`](https://github.com/VerusCoin/VerusCoin/commit/11215289254c490b2ed146612e1504376d0964eb), build it and then restart it. + +### Update VSRC + +#### Using docker setup + +```bash +cd notary_docker_3p +git pull +./update +./start +``` + +#### Using other setup + +- Build Verus Coin + +```bash +vrsc_commit='1121528' +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 & +``` + +### 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. Make sure any certs for your seednode are up to date and have no permssions issues, and that your wss connection is responding. If you have any issues, please contact us on Discord. diff --git a/iguana/version b/iguana/version index b4d6d121..88a7b228 100644 --- a/iguana/version +++ b/iguana/version @@ -1 +1 @@ -0.7.11 +0.7.12