diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b74ad4e..d8686f79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,6 @@ All notable changes to this project will be documented in this file. The format ### Notes - Support for new blockchains and tools DOES NOT imply my endorsement for them. *Only run those you are comfortable with.* - ## [2.3.0] - 2024-05-06 ### Added - Gigahorse: Optionally launch `chia-exporter` [metrics endpoint](https://github.com/Chia-Network/chia-exporter) for Prometheus reporting if env var `chia_exporter=true` is set. diff --git a/scripts/forks/chia_install.sh b/scripts/forks/chia_install.sh index ab3c5b46..f9b5c82f 100644 --- a/scripts/forks/chia_install.sh +++ b/scripts/forks/chia_install.sh @@ -27,10 +27,10 @@ else echo "Installing Chia CUDA binaries on ${arch_name}..." cd /tmp if [[ "${arch_name}" == "x86_64" ]]; then - curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.3.1-rc1/chia-blockchain-cli_2.3.1rc1-1_amd64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.3.1/chia-blockchain-cli_2.3.1-1_amd64.deb apt-get install ./chia-blockchain-cli*.deb else - curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.3.1-rc1/chia-blockchain-cli_2.3.1rc1-1_arm64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.3.1/chia-blockchain-cli_2.3.1-1_arm64.deb apt-get install ./chia-blockchain-cli*.deb fi