Skip to content

Latest commit

 

History

History
87 lines (66 loc) · 1.64 KB

update0710.md

File metadata and controls

87 lines (66 loc) · 1.64 KB

dPoW 0.7.10 update information

On your 3P node:

  • update your Verus Coin's codebase to f9abd80, build it and then restart it.
  • update your Tokel codebase to 28939c1, build it and then restart it.
  • update your Marmara codebase to 4b73b24, build it and then restart it.

Update VSRC, TKL & MCL

Using docker setup

cd notary_docker_3p
git pull
./update
./start

Using other setup

  • Build Verus Coin
vrsc_commit='f9abd80'
cd ~/VerusCoin
git pull
git checkout ${vrsc_commit}
./zcutil/build.sh -j$(expr $(nproc) - 1)
  • Restart it
cd ~/VerusCoin/src
./verus stop
source ~/dPoW/iguana/pubkey.txt
./verusd -pubkey=$pubkey &
  • Build Tokel
tkl_commit='28939c1'
cd ~/tokel
git pull
git checkout ${tkl_commit}
./zcutil/build.sh -j$(expr $(nproc) - 1)
  • Restart it
cd ~/tokel/src
./komodo-cli -ac_name=TOKEL stop
source ~/dPoW/iguana/pubkey.txt
./tokeld -pubkey=$pubkey &
  • Build Marmara
mcl_commit='4b73b24'
cd ~/marmara
git pull
git checkout ${mcl_commit}
./zcutil/build.sh -j$(expr $(nproc) - 1)
  • Restart it
cd ~/marmara/src
./komodo-cli -ac_name=MCL stop
source ~/dPoW/iguana/pubkey.txt
./mamarad -pubkey=$pubkey &

Update your dPoW repo

cd ~/dPoW
git checkout master
git pull

Once complete, monitor your node to ensure it is running correctly and notarisations are progressing.