From 63d0c95791c28612958d0e0a0df702154693a2cc Mon Sep 17 00:00:00 2001 From: gcharang <21151592+gcharang@users.noreply.github.com> Date: Tue, 11 Jul 2023 07:26:59 +0530 Subject: [PATCH 1/5] update for vrsc v1.0.12-3 --- README.md | 2 +- doc/changelog.md | 4 ++++ doc/update072.md | 41 +++++++++++++++++++++++++++++++++++++++++ iguana/version | 2 +- 4 files changed, 47 insertions(+), 2 deletions(-) create mode 100644 doc/update072.md diff --git a/README.md b/README.md index 5daef13b..000a6c02 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) | [c675fcb](https://github.com/marmarachain/marmara/tree/c675fcb5bce34b6bb2ae8032109302a7473035cb) | [![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) | [f1fc997](https://github.com/TokelPlatform/tokel/tree/f1fc997c5b66ea53992c77a8478aa5a157c4fbc3) | [![dPOW Status](https://badges.komodo.earth/svg/TOKEL_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3P | -| VRSC | [verus](https://github.com/VerusCoin/VerusCoin) | [66e16e7](https://github.com/VerusCoin/VerusCoin/tree/66e16e79c8c3f60279952b2b36a8b06d4d7a81de) | [![dPOW Status](https://badges.komodo.earth/svg/VRSC_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3P | +| VRSC | [verus](https://github.com/VerusCoin/VerusCoin) | [9538320](https://github.com/VerusCoin/VerusCoin/tree/953832041071c4327fc87f8ff6f4133ed7739cb1) | [![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 46cb2e83..8f9e1bad 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -2,6 +2,10 @@ ## 0.7.1 +- Updates VRSC to [`9538320`](https://github.com/VerusCoin/VerusCoin/tree/953832041071c4327fc87f8ff6f4133ed7739cb1) + +## 0.7.1 + - Updates VRSC to [`66e16e7`](https://github.com/VerusCoin/VerusCoin/tree/66e16e79c8c3f60279952b2b36a8b06d4d7a81de) ## 0.7.0 diff --git a/doc/update072.md b/doc/update072.md new file mode 100644 index 00000000..7ecb2c9d --- /dev/null +++ b/doc/update072.md @@ -0,0 +1,41 @@ +### dPoW 0.7.2 update information + +- On your 3P node, update your Verus Coin's codebase to [`9538320`](https://github.com/VerusCoin/VerusCoin/tree/953832041071c4327fc87f8ff6f4133ed7739cb1), build it and then restart it. + +#### If using smk's docker setup + +```bash +cd notary_docker_3p +git pull +./update vrsc +``` + +#### If custom setup + +- Build Verus Coin + +```bash +cd ~/VerusCoin +git pull +git checkout 9538320 +./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 +``` + +Make sure your 3P iguana is running properly. diff --git a/iguana/version b/iguana/version index 7deb86fe..d5cc44d1 100644 --- a/iguana/version +++ b/iguana/version @@ -1 +1 @@ -0.7.1 \ No newline at end of file +0.7.2 \ No newline at end of file From a8b2f480b227ad849d743de5aaf0511616f0629d Mon Sep 17 00:00:00 2001 From: gcharang <21151592+gcharang@users.noreply.github.com> Date: Tue, 11 Jul 2023 07:31:28 +0530 Subject: [PATCH 2/5] update vrsc commit --- doc/daemon_versions.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/daemon_versions.json b/doc/daemon_versions.json index 172e7081..a89b327c 100644 --- a/doc/daemon_versions.json +++ b/doc/daemon_versions.json @@ -18,5 +18,5 @@ "MCL": "c675fcb", "MIL": "5df2e4d", "TOKEL": "f1fc997", - "VRSC": "66e16e7" -} + "VRSC": "9538320" +} \ No newline at end of file From a0b2283d3826736eb4942f03c00aeb1ec24cd7fc Mon Sep 17 00:00:00 2001 From: gcharang <21151592+gcharang@users.noreply.github.com> Date: Tue, 11 Jul 2023 07:32:23 +0530 Subject: [PATCH 3/5] update build instructions --- doc/update072.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/update072.md b/doc/update072.md index 7ecb2c9d..ac8d710f 100644 --- a/doc/update072.md +++ b/doc/update072.md @@ -7,7 +7,8 @@ ```bash cd notary_docker_3p git pull -./update vrsc +./update vrsc #supply sudo password when asked +./start vrsc ``` #### If custom setup From f4c55503f1be93cd28fddc5f0af9b49e1f5462d7 Mon Sep 17 00:00:00 2001 From: gcharang <21151592+gcharang@users.noreply.github.com> Date: Tue, 11 Jul 2023 15:42:52 +0530 Subject: [PATCH 4/5] update vrsc commit --- README.md | 2 +- doc/changelog.md | 2 +- doc/daemon_versions.json | 2 +- doc/update072.md | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 000a6c02..6cc0b1be 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) | [c675fcb](https://github.com/marmarachain/marmara/tree/c675fcb5bce34b6bb2ae8032109302a7473035cb) | [![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) | [f1fc997](https://github.com/TokelPlatform/tokel/tree/f1fc997c5b66ea53992c77a8478aa5a157c4fbc3) | [![dPOW Status](https://badges.komodo.earth/svg/TOKEL_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3P | -| VRSC | [verus](https://github.com/VerusCoin/VerusCoin) | [9538320](https://github.com/VerusCoin/VerusCoin/tree/953832041071c4327fc87f8ff6f4133ed7739cb1) | [![dPOW Status](https://badges.komodo.earth/svg/VRSC_badge.svg?maxAge=60)](https://komodostats.com) | dPoW-3P | +| VRSC | [verus](https://github.com/VerusCoin/VerusCoin) | [cd20298](https://github.com/VerusCoin/VerusCoin/tree/cd2029890b5a101c60474d0517d955c166049dd0) | [![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 8f9e1bad..a541f926 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -2,7 +2,7 @@ ## 0.7.1 -- Updates VRSC to [`9538320`](https://github.com/VerusCoin/VerusCoin/tree/953832041071c4327fc87f8ff6f4133ed7739cb1) +- Updates VRSC to [`cd20298`](https://github.com/VerusCoin/VerusCoin/tree/cd2029890b5a101c60474d0517d955c166049dd0) ## 0.7.1 diff --git a/doc/daemon_versions.json b/doc/daemon_versions.json index a89b327c..fe476cf8 100644 --- a/doc/daemon_versions.json +++ b/doc/daemon_versions.json @@ -18,5 +18,5 @@ "MCL": "c675fcb", "MIL": "5df2e4d", "TOKEL": "f1fc997", - "VRSC": "9538320" + "VRSC": "cd20298" } \ No newline at end of file diff --git a/doc/update072.md b/doc/update072.md index ac8d710f..dcaf6e90 100644 --- a/doc/update072.md +++ b/doc/update072.md @@ -1,6 +1,6 @@ ### dPoW 0.7.2 update information -- On your 3P node, update your Verus Coin's codebase to [`9538320`](https://github.com/VerusCoin/VerusCoin/tree/953832041071c4327fc87f8ff6f4133ed7739cb1), build it and then restart it. +- On your 3P node, update your Verus Coin's codebase to [`cd20298`](https://github.com/VerusCoin/VerusCoin/tree/cd2029890b5a101c60474d0517d955c166049dd0), build it and then restart it. #### If using smk's docker setup @@ -18,7 +18,7 @@ git pull ```bash cd ~/VerusCoin git pull -git checkout 9538320 +git checkout cd20298 ./zcutil/build.sh -j$(expr $(nproc) - 1) ``` From 3605870309266be3f3478dc10f11c8fc92a7d798 Mon Sep 17 00:00:00 2001 From: gcharang <21151592+gcharang@users.noreply.github.com> Date: Tue, 11 Jul 2023 23:25:31 +0530 Subject: [PATCH 5/5] Update changelog.md --- doc/changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/changelog.md b/doc/changelog.md index a541f926..3e77af43 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -1,6 +1,6 @@ # Changelog -## 0.7.1 +## 0.7.2 - Updates VRSC to [`cd20298`](https://github.com/VerusCoin/VerusCoin/tree/cd2029890b5a101c60474d0517d955c166049dd0)