summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine A <>2023-01-31 15:50:24 +0100
committerAntoine A <>2023-01-31 15:50:24 +0100
commitce00d1fcfc3dc5833677c8c0b13c250ad9bd2fe0 (patch)
tree249285675ef27d4ffad51e20ebc8c3f20917e8c3
parent88b8c4d62424ccb1804cfea8bbf4d686226261b3 (diff)
downloaddepolymerization-ce00d1fcfc3dc5833677c8c0b13c250ad9bd2fe0.tar.gz
depolymerization-ce00d1fcfc3dc5833677c8c0b13c250ad9bd2fe0.tar.bz2
depolymerization-ce00d1fcfc3dc5833677c8c0b13c250ad9bd2fe0.zip
Update node versions
-rw-r--r--README.md6
-rwxr-xr-xscript/prepare.sh8
2 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 572608b..0885a8e 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@
## Install from source
-Cargo version 1.16.1 or above is required. You can get cargo from your
+Cargo version 1.66.1 or above is required. You can get cargo from your
distribution package manager or from [rustup.rs](https://rustup.rs/).
```
@@ -37,11 +37,11 @@ Depolymerizer require:
#### Bitcoin
-[Bitcoind](https://bitcoincore.org/) version 23.0 is expected
+[Bitcoind](https://bitcoincore.org/) version 24.0 is expected
#### Ethereum
-[Geth](https://geth.ethereum.org/) version 1.10.20 is expected
+[Geth](https://geth.ethereum.org/) version 1.10.26 is expected
### Initialization
diff --git a/script/prepare.sh b/script/prepare.sh
index c2466b4..d95d9d7 100755
--- a/script/prepare.sh
+++ b/script/prepare.sh
@@ -22,19 +22,19 @@ echo "Found version $PG_VER"
echo "Ⅱ - Install bitcoind version 0.23"
cd $DIR
-curl -L https://bitcoincore.org/bin/bitcoin-core-23.1/bitcoin-23.1-x86_64-linux-gnu.tar.gz -o btc.tar.gz
+curl -L https://bitcoincore.org/bin/bitcoin-core-24.0.1/bitcoin-24.0.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-23.1/* ~/bitcoin
+mv -v bitcoin-24.0.1/* ~/bitcoin
echo "Ⅲ - Install Go Ethereum (Geth) v1.10.24"
cd $DIR
-curl -L https://gethstore.blob.core.windows.net/builds/geth-alltools-linux-amd64-1.10.24-972007a5.tar.gz -o geth.tar.gz
+curl -L https://gethstore.blob.core.windows.net/builds/geth-alltools-linux-amd64-1.10.26-e5eb32ac.tar.gz -o geth.tar.gz
tar xvzf geth.tar.gz
rm -rfv ~/geth
mkdir -pv ~/geth
-mv -v geth-alltools-linux-amd64-1.10.24-972007a5/* ~/geth
+mv -v geth-alltools-linux-amd64-1.10.26-e5eb32ac/* ~/geth
echo "Ⅳ - Install Lightning Network Daemon v0.15.5-beta"
cd $DIR