summaryrefslogtreecommitdiff
path: root/script/prepare.sh
diff options
context:
space:
mode:
Diffstat (limited to 'script/prepare.sh')
-rwxr-xr-xscript/prepare.sh12
1 files changed, 6 insertions, 6 deletions
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"