Gryph_The_Grey

upto1.17.0

Jul 23rd, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. cd ~/cardano-node
  2. rm -rf db/*
  3. mkdir backup
  4. mv *.json backup
  5. wget https://hydra.iohk.io/build/3596468/download/1/mainnet_candidate_3-config.json
  6. wget https://hydra.iohk.io/build/3596468/download/1/mainnet_candidate_3-byron-genesis.json
  7. wget https://hydra.iohk.io/build/3596468/download/1/mainnet_candidate_3-shelley-genesis.json
  8. wget https://hydra.iohk.io/build/3596468/download/1/mainnet_candidate_3-topology.json
  9. cp mainnet_candidate_3-config.json config.json
  10. cp mainnet_candidate_3-topology.json topology.json
  11. sed -i 's/"TraceBlockFetchDecisions": false/"TraceBlockFetchDecisions": true/g' config.json
  12. sed -i 's/SimpleView/LiveView/g' config.json
  13. sed -i 's/127.0.0.1/0.0.0.0/g' config.json
  14. rm ~/.cabal/bin/*
  15. git fetch --all
  16. git checkout tags/1.17.0
  17. git pull
  18. cabal clean
  19. cabal update
  20. cabal build all
  21. cp dist-newstyle/build/x86_64-linux/ghc-8.6.5/cardano-cli-1.17.0/x/cardano-cli/build/cardano-cli/cardano-cli ~/.cabal/bin
  22. cp dist-newstyle/build/x86_64-linux/ghc-8.6.5/cardano-node-1.17.0/x/cardano-node/build/cardano-node/cardano-node ~/.cabal/bin
Add Comment
Please, Sign In to add comment