summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine A <>2024-02-01 16:59:45 +0100
committerAntoine A <>2024-02-01 16:59:45 +0100
commitc97f15ab23c310dfb630f78c1513c38803ab0f2a (patch)
tree02b85c646d9c6ececcea9e37d93685687045bd7c
parentbc800d586f2fb2e487d52fb68a7904ddeac7dfbb (diff)
downloaddepolymerization-c97f15ab23c310dfb630f78c1513c38803ab0f2a.tar.gz
depolymerization-c97f15ab23c310dfb630f78c1513c38803ab0f2a.tar.bz2
depolymerization-c97f15ab23c310dfb630f78c1513c38803ab0f2a.zip
Revert node version bump, more testing is required
-rw-r--r--README.md4
-rwxr-xr-xscript/prepare.sh12
2 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index 4e8f08b..8235867 100644
--- 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
index 3de725f..531ec09 100755
--- 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"