commit c97f15ab23c310dfb630f78c1513c38803ab0f2a parent bc800d586f2fb2e487d52fb68a7904ddeac7dfbb Author: Antoine A <> Date: Thu, 1 Feb 2024 16:59:45 +0100 Revert node version bump, more testing is required Diffstat:
| M | README.md | | | 4 | ++-- |
| M | script/prepare.sh | | | 12 | ++++++------ |
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/README.md b/README.md @@ -38,11 +38,11 @@ Depolymerizer require: #### Bitcoin -[Bitcoind](https://bitcoincore.org/) version 26.0 is expected +[Bitcoind](https://bitcoincore.org/) version 25.1 is expected #### Ethereum -[Geth](https://geth.ethereum.org/) version 1.13.11 is expected +[Geth](https://geth.ethereum.org/) version 1.13.5 is expected ### Initialization diff --git a/script/prepare.sh b/script/prepare.sh @@ -20,21 +20,21 @@ echo "Ⅰ - Find installed postgres version" PG_VER=`pg_config --version | egrep -o '[0-9]{1,}' | head -1` echo "Found version $PG_VER" -echo "Ⅱ - Install bitcoind version 26.0" +echo "Ⅱ - Install bitcoind version 25.1" cd $DIR -curl -L https://bitcoincore.org/bin/bitcoin-core-26.0/bitcoin-26.0-x86_64-linux-gnu.tar.gz -o btc.tar.gz +curl -L https://bitcoincore.org/bin/bitcoin-core-25.1/bitcoin-25.1-x86_64-linux-gnu.tar.gz -o btc.tar.gz tar xvzf btc.tar.gz rm -rfv ~/bitcoin mkdir -pv ~/bitcoin -mv -v bitcoin-26.0/* ~/bitcoin +mv -v bitcoin-25.1/* ~/bitcoin -echo "Ⅲ - Install Go Ethereum (Geth) v1.13.11" +echo "Ⅲ - Install Go Ethereum (Geth) v1.13.5" cd $DIR -curl -L https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.13.11-8f7eb9cc.tar.gz -o geth.tar.gz +curl -L https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.13.5-916d6a44.tar.gz -o geth.tar.gz tar xvzf geth.tar.gz rm -rfv ~/geth mkdir -pv ~/geth -mv -v geth-linux-amd64-1.13.11-8f7eb9cc/* ~/geth +mv -v geth-linux-amd64-1.13.5-916d6a44/* ~/geth echo "Ⅴ - PATH"