depolymerization

wire gateway for Bitcoin/Ethereum
Log | Files | Refs | Submodules | README | LICENSE

commit ce00d1fcfc3dc5833677c8c0b13c250ad9bd2fe0
parent 88b8c4d62424ccb1804cfea8bbf4d686226261b3
Author: Antoine A <>
Date:   Tue, 31 Jan 2023 15:50:24 +0100

Update node versions

Diffstat:
MREADME.md | 6+++---
Mscript/prepare.sh | 8++++----
2 files changed, 7 insertions(+), 7 deletions(-)

diff --git 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 @@ -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