From fa5b81ac296af81e07f874351f900187e09af545 Mon Sep 17 00:00:00 2001 From: smk762 Date: Wed, 16 Aug 2023 14:01:50 +0800 Subject: [PATCH 1/3] update VRSC --- README.md | 2 +- doc/changelog.md | 4 ++++ doc/update073.md | 31 +++++++++++++++++++++++++++++++ iguana/version | 2 +- 4 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 doc/update073.md diff --git a/README.md b/README.md index 6cc0b1be..ee762c7f 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) | [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 | +| VRSC | [verus](https://github.com/VerusCoin/VerusCoin) | [2d32721](https://github.com/VerusCoin/VerusCoin/tree/2d327210fddc245c693d00c9a025bd81f5f079eb) | [![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 3e77af43..324a5223 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -1,5 +1,9 @@ # Changelog +## 0.7.3 + +- Updates VRSC to [`cd20298`](https://github.com/VerusCoin/VerusCoin/tree/cd2029890b5a101c60474d0517d955c166049dd0) + ## 0.7.2 - Updates VRSC to [`cd20298`](https://github.com/VerusCoin/VerusCoin/tree/cd2029890b5a101c60474d0517d955c166049dd0) diff --git a/doc/update073.md b/doc/update073.md new file mode 100644 index 00000000..472f2a6e --- /dev/null +++ b/doc/update073.md @@ -0,0 +1,31 @@ +### dPoW 0.7.3 update information + +- On your 3P node, update your Verus Coin's codebase to [`2d32721`](https://github.com/VerusCoin/VerusCoin/tree/2d327210fddc245c693d00c9a025bd81f5f079eb), build it and then restart it. + +- Build Verus Coin + +```bash +cd ~/VerusCoin +git pull +git checkout 2d32721 +./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 iguana is running properly. diff --git a/iguana/version b/iguana/version index d5cc44d1..b09a54cb 100644 --- a/iguana/version +++ b/iguana/version @@ -1 +1 @@ -0.7.2 \ No newline at end of file +0.7.3 \ No newline at end of file From 132694dd8ab903a711d3874f4e3e977d367bec09 Mon Sep 17 00:00:00 2001 From: smk762 Date: Wed, 16 Aug 2023 14:21:18 +0800 Subject: [PATCH 2/3] include docker update instructions --- doc/update073.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/doc/update073.md b/doc/update073.md index 472f2a6e..394fc184 100644 --- a/doc/update073.md +++ b/doc/update073.md @@ -2,6 +2,18 @@ - On your 3P node, update your Verus Coin's codebase to [`2d32721`](https://github.com/VerusCoin/VerusCoin/tree/2d327210fddc245c693d00c9a025bd81f5f079eb), build it and then restart it. + +#### If using smk's docker setup + +```bash +cd notary_docker_3p +git pull +./update vrsc # supply sudo password when asked +./start vrsc +``` + +#### If custom setup + - Build Verus Coin ```bash @@ -20,7 +32,7 @@ source ~/dPoW/iguana/pubkey.txt ./verusd -pubkey=$pubkey & ``` -- Update your dPoW repo +#### Update your dPoW repo ```bash cd ~/dPoW @@ -28,4 +40,4 @@ git checkout master git pull ``` -Make sure your iguana is running properly. +Make sure your 3P iguana is running properly. From 6dee323c32fb99ffd389bfb1f3d33263f7a36313 Mon Sep 17 00:00:00 2001 From: smk762 Date: Wed, 16 Aug 2023 20:28:34 +0800 Subject: [PATCH 3/3] fix version --- doc/changelog.md | 4 ++-- doc/{update073.md => update075.md} | 2 +- iguana/version | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename doc/{update073.md => update075.md} (95%) diff --git a/doc/changelog.md b/doc/changelog.md index 324a5223..dd0f0935 100644 --- a/doc/changelog.md +++ b/doc/changelog.md @@ -1,8 +1,8 @@ # Changelog -## 0.7.3 +## 0.7.5 -- Updates VRSC to [`cd20298`](https://github.com/VerusCoin/VerusCoin/tree/cd2029890b5a101c60474d0517d955c166049dd0) +- Updates VRSC to [`2d32721`](https://github.com/VerusCoin/VerusCoin/tree/2d327210fddc245c693d00c9a025bd81f5f079eb) ## 0.7.2 diff --git a/doc/update073.md b/doc/update075.md similarity index 95% rename from doc/update073.md rename to doc/update075.md index 394fc184..d59ba723 100644 --- a/doc/update073.md +++ b/doc/update075.md @@ -1,4 +1,4 @@ -### dPoW 0.7.3 update information +### dPoW 0.7.5 update information - On your 3P node, update your Verus Coin's codebase to [`2d32721`](https://github.com/VerusCoin/VerusCoin/tree/2d327210fddc245c693d00c9a025bd81f5f079eb), build it and then restart it. diff --git a/iguana/version b/iguana/version index b09a54cb..da2ac9c7 100644 --- a/iguana/version +++ b/iguana/version @@ -1 +1 @@ -0.7.3 \ No newline at end of file +0.7.5 \ No newline at end of file