Created
August 24, 2020 13:02
-
-
Save ForboleDevelopment/e3aa50079edc25045b97798169ce946e to your computer and use it in GitHub Desktop.
Commands that should be run in order to update from morpheus-7001 to morpheus-8000 seamlessly
This file contains hidden or 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
# Go into the folder where you downloaded Desmos | |
cd ~/desmos | |
# Checkout the correct Desmos tag and build the software | |
git fetch --tags && git checkout tags/v0.10.0 && make install | |
# Stop the currently running node | |
sudo systemctl stop desmosd | |
# Remove the current genesis and get the new one | |
rm ~/.desmosd/config/genesis.json | |
curl https://raw.githubusercontent.com/desmos-labs/morpheus/master/genesis.json > ~/.desmosd/config/genesis.json | |
# Reset the node and start it again | |
desmosd unsafe-reset-all | |
sudo systemctl start desmosd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment