Passage Upgrade
Upgrade to v3.0.1
Manual upgrade
Loading data...
cd $HOME && rm -rf passage && \
git clone https://github.com/envadiv/Passage3D.git passage && cd passage && \
git fetch --tags && \
git checkout v3.0.1 && \
make build && \
sudo mv build/passage $(which passage) && \
sudo service passage restart && \
sudo journalctl -fu passage -o cat
Cosmovisor upgrade
Note
Choose this method only if you're using Cosmovisor to manage binaries and automate chain upgrades.
cd $HOME && rm -rf passage && \
git clone https://github.com/envadiv/Passage3D.git passage && cd passage && \
git fetch --tags && \
git checkout v3.0.1 && \
make build && \
mkdir -p $HOME/.passage/cosmovisor/upgrades/v3.0.0/bin && \
mv build/passage $HOME/.passage/cosmovisor/upgrades/v3.0.0/bin/
Note: if you see this in your node’s logs: UPGRADE "v3.0.0" NEEDED at height: 19807986 then force Cosmovisor to point at the new upgrade directory:
cd "$HOME/.passage/cosmovisor" && ln -sfn "upgrades/v3.0.0" current && ls -l current
This tells Cosmovisor to use the v3.0.1 binary as the “current” release so it won’t error on startup.