From 550c5ca9249ca22bef820b2ff2553038184f62ac Mon Sep 17 00:00:00 2001 From: Guy Davis Date: Fri, 25 Oct 2024 10:10:44 -0600 Subject: [PATCH 1/8] Updated gigahorse --- .github/workflows/develop-chia.yaml | 2 +- .github/workflows/main-chia.yaml | 2 +- .github/workflows/main-mmx.yaml | 2 +- .github/workflows/test-chia.yaml | 2 +- .github/workflows/test-mmx.yaml | 2 +- CHANGELOG.md | 7 +++++++ VERSION | 2 +- 7 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/develop-chia.yaml b/.github/workflows/develop-chia.yaml index 4988747d..9d31a8b0 100644 --- a/.github/workflows/develop-chia.yaml +++ b/.github/workflows/develop-chia.yaml @@ -89,7 +89,7 @@ jobs: "UBUNTU_VER=jammy" "MACHINARIS_STREAM=develop" "CHIADOG_BRANCH=dev" - "GIGAHORSE_BRANCH=v2.4.1.giga36" + "GIGAHORSE_BRANCH=v2.4.4.giga36" "CHIA_BRANCH=main" "PLOTMAN_BRANCH=compress" tags: | diff --git a/.github/workflows/main-chia.yaml b/.github/workflows/main-chia.yaml index a104af29..79394acb 100644 --- a/.github/workflows/main-chia.yaml +++ b/.github/workflows/main-chia.yaml @@ -89,7 +89,7 @@ jobs: build-args: | "UBUNTU_VER=jammy" "MACHINARIS_STREAM=latest" - "GIGAHORSE_BRANCH=v2.4.1.giga36" + "GIGAHORSE_BRANCH=v2.4.4.giga36" "CHIA_BRANCH=main" tags: | ${{ secrets.DOCKERHUB_USERNAME }}/machinaris-gigahorse:latest diff --git a/.github/workflows/main-mmx.yaml b/.github/workflows/main-mmx.yaml index e6931e86..a7eba8eb 100644 --- a/.github/workflows/main-mmx.yaml +++ b/.github/workflows/main-mmx.yaml @@ -46,7 +46,7 @@ jobs: "MACHINARIS_STREAM=latest" "CHIA_BRANCH=latest" "MMX_BRANCH=v0.10.6" - "GIGAHORSE_BRANCH=v2.4.1.giga36" + "GIGAHORSE_BRANCH=v2.4.4.giga36" tags: | ${{ secrets.DOCKERHUB_USERNAME }}/machinaris-mmx:latest ${{ secrets.DOCKERHUB_USERNAME }}/machinaris-mmx:v${{ github.event.inputs.version }} diff --git a/.github/workflows/test-chia.yaml b/.github/workflows/test-chia.yaml index f34e8736..cd32c743 100644 --- a/.github/workflows/test-chia.yaml +++ b/.github/workflows/test-chia.yaml @@ -89,7 +89,7 @@ jobs: "UBUNTU_VER=jammy" "MACHINARIS_STREAM=test" "CHIADOG_BRANCH=dev" - "GIGAHORSE_BRANCH=v2.4.1.giga36" + "GIGAHORSE_BRANCH=v2.4.4.giga36" "CHIA_BRANCH=main" "PLOTMAN_BRANCH=development" tags: | diff --git a/.github/workflows/test-mmx.yaml b/.github/workflows/test-mmx.yaml index 6bfa53bb..79476288 100644 --- a/.github/workflows/test-mmx.yaml +++ b/.github/workflows/test-mmx.yaml @@ -46,7 +46,7 @@ jobs: "CHIA_BRANCH=latest" "PLOTMAN_BRANCH=development" "MMX_BRANCH=v0.10.6" - "GIGAHORSE_BRANCH=v2.4.1.giga36" + "GIGAHORSE_BRANCH=v2.4.4.giga36" tags: | ${{ secrets.DOCKERHUB_USERNAME }}/machinaris-mmx:test ghcr.io/${{ secrets.DOCKERHUB_USERNAME }}/machinaris-mmx:test diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c8d0b1a..c8212a9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.4.5] - Unreleased +### Added +### Changed +### Updated + - [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.4.5) to v2.4.5 - misc improvements, see their release notes. + - [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.4.4.giga36) to v2.4.4.giga36. + ## [2.4.4] - 2024-10-17 ### Added ### Changed diff --git a/VERSION b/VERSION index ab6d2789..26f8b8bc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.4.4 \ No newline at end of file +2.4.5 \ No newline at end of file From ff60dcf5dde48be5ec45b20a81d78e7b6ef99236 Mon Sep 17 00:00:00 2001 From: "Adam J. Weigold" Date: Tue, 3 Dec 2024 14:52:14 -0600 Subject: [PATCH 2/8] Restart stuck farmer if no partial proofs for pools have occurred in awhile. --- api/schedules/restart_stuck_farmer.py | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/api/schedules/restart_stuck_farmer.py b/api/schedules/restart_stuck_farmer.py index f14c93e0..515284be 100644 --- a/api/schedules/restart_stuck_farmer.py +++ b/api/schedules/restart_stuck_farmer.py @@ -5,7 +5,9 @@ # # Also, if a limit is optionally set, will trigger a blockchain restart if exceeds # X GB over a period of time. Useful for old forks which are memory leakers per day. -# +# +# Also, if no partial proofs for pools for a while, restart farmer. +# import datetime as dt import math @@ -13,11 +15,14 @@ import subprocess import traceback +from web import db from api import app from common.config import globals from api.commands import chia_cli, plotman_cli +from common.models import partials as pr RESTART_IF_STUCK_MINUTES = 15 +RESTART_IF_STUCK_NO_PARTIALS_MINUTES = 60 last_peak = None last_peak_time = None @@ -90,4 +95,14 @@ def execute(): memory_exceeded_since = None # Not over the limit anymore except Exception as ex: app.logger.info("Skipping bloated farmer check due to exception: {0}".format(str(ex))) - traceback.print_exc() \ No newline at end of file + traceback.print_exc() + # If no partial proofs for pools for a while, restart farmer + try: + if not globals.wallet_running(): # Only if wallet is not currently being synced + partials = db.session.query(pr.Partial).filter(pr.Partial.created_at >= (dt.datetime.now() - dt.timedelta(minutes=RESTART_IF_STUCK_NO_PARTIALS_MINUTES))).all() + if len(partials) == 0: + app.logger.info("***************** RESTARTING FARMER DUE TO NO PARTIALS FOR {} MINUTES!!! ******************".format(RESTART_IF_STUCK_MINUTES)) + chia_cli.restart_farmer(blockchain) + return + except Exception as ex: + app.logger.info("Skipping stuck farmer check due to exception: {0}".format(str(ex))) From ef281e0d0f113adee7e82fdfacc4e1a8fdb679db Mon Sep 17 00:00:00 2001 From: Guy Davis Date: Fri, 6 Dec 2024 11:11:08 -0700 Subject: [PATCH 3/8] Chia @ v2.5.0-rc1 --- CHANGELOG.md | 3 ++- CREDITS.md | 1 + VERSION | 2 +- api/schedules/restart_stuck_farmer.py | 10 +++++++++- scripts/forks/chia_install.sh | 4 ++-- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8212a9f..effc1ed2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,10 @@ All notable changes to this project will be documented in this file. The format ## [2.4.5] - Unreleased ### Added + - New check to restart a farmer if pooling and no partials have been observed in the last hour. Thanks @aweigold! ### Changed ### Updated - - [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.4.5) to v2.4.5 - misc improvements, see their release notes. + - [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.5.0) to v2.5.0 - misc improvements, see their release notes. - [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.4.4.giga36) to v2.4.4.giga36. ## [2.4.4] - 2024-10-17 diff --git a/CREDITS.md b/CREDITS.md index 5614e916..a04c4ae3 100644 --- a/CREDITS.md +++ b/CREDITS.md @@ -96,6 +96,7 @@ A big thanks to all that contributed with dev and test including: * @Finball * @chris-merritt * @priyankub +* @aweigold ## Trademark Notice CHIA NETWORK INC, CHIA™, the CHIA BLOCKCHAIN™, the CHIA PROTOCOL™, CHIALISP™ and the “leaf Logo” (including the leaf logo alone when it refers to or indicates Chia), are trademarks or registered trademarks of Chia Network, Inc., a Delaware corporation. *There is no affliation between this Machinaris project and the main Chia Network project.* \ No newline at end of file diff --git a/VERSION b/VERSION index 26f8b8bc..fad066f8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.4.5 \ No newline at end of file +2.5.0 \ No newline at end of file diff --git a/api/schedules/restart_stuck_farmer.py b/api/schedules/restart_stuck_farmer.py index 515284be..c4338772 100644 --- a/api/schedules/restart_stuck_farmer.py +++ b/api/schedules/restart_stuck_farmer.py @@ -20,6 +20,7 @@ from common.config import globals from api.commands import chia_cli, plotman_cli from common.models import partials as pr +from common.models import plotnfts as pn RESTART_IF_STUCK_MINUTES = 15 RESTART_IF_STUCK_NO_PARTIALS_MINUTES = 60 @@ -99,7 +100,14 @@ def execute(): # If no partial proofs for pools for a while, restart farmer try: if not globals.wallet_running(): # Only if wallet is not currently being synced - partials = db.session.query(pr.Partial).filter(pr.Partial.created_at >= (dt.datetime.now() - dt.timedelta(minutes=RESTART_IF_STUCK_NO_PARTIALS_MINUTES))).all() + plotnfts = db.session.query(pn.Plotnft).filter(pn.Plotnft.blockchain == blockchain).all() + is_pooling = False + for plotnft in plotnfts: + if not "SELF_POOLING" in plotnft.details: + is_pooling = True + if not is_pooling: + return # No plotnft currently pooling (not self-pooling), so don't expect any partials + partials = db.session.query(pr.Partial).filter(pr.Partial.blockchain == blockchain, pr.Partial.created_at >= (dt.datetime.now() - dt.timedelta(minutes=RESTART_IF_STUCK_NO_PARTIALS_MINUTES))).all() if len(partials) == 0: app.logger.info("***************** RESTARTING FARMER DUE TO NO PARTIALS FOR {} MINUTES!!! ******************".format(RESTART_IF_STUCK_MINUTES)) chia_cli.restart_farmer(blockchain) diff --git a/scripts/forks/chia_install.sh b/scripts/forks/chia_install.sh index 730b6c8d..f41ce144 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.4.4/chia-blockchain-cli_2.4.4-1_amd64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.5.0-rc1/chia-blockchain-cli_2.5.0-rc1-1_amd64.deb apt-get install ./chia-blockchain-cli*.deb else - curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.4/chia-blockchain-cli_2.4.4-1_arm64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.5.0-rc1/chia-blockchain-cli_2.5.0-rc1-1_arm64.deb apt-get install ./chia-blockchain-cli*.deb fi From a4de8480af80a042f3a7a6ce2f7db1f514241fbe Mon Sep 17 00:00:00 2001 From: Guy Davis Date: Sat, 7 Dec 2024 13:02:10 -0700 Subject: [PATCH 4/8] Deal with Gigahorse missing ARM64 support in latest release. --- CHANGELOG.md | 4 ++-- scripts/forks/gigahorse_install.sh | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index effc1ed2..b4df1ed1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,13 +2,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [2.4.5] - Unreleased +## [2.5.0] - Unreleased ### Added - New check to restart a farmer if pooling and no partials have been observed in the last hour. Thanks @aweigold! ### Changed ### Updated - [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.5.0) to v2.5.0 - misc improvements, see their release notes. - - [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.4.4.giga36) to v2.4.4.giga36. + - [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.4.4.giga36) to v2.4.4.giga36. NOTE: Only for AMD64, so ARM64 uses previous version. ## [2.4.4] - 2024-10-17 ### Added diff --git a/scripts/forks/gigahorse_install.sh b/scripts/forks/gigahorse_install.sh index 5f5fd789..f31af6a6 100644 --- a/scripts/forks/gigahorse_install.sh +++ b/scripts/forks/gigahorse_install.sh @@ -23,12 +23,16 @@ else du -hsc chia-gigahorse-farmer* tar -xzf chia-gigahorse-farmer* else + # Max broke ARM64 support in v2.4.4.giga36, have to downgrade to 2.4.1 + if [[ "${GIGAHORSE_BRANCH}" == "v2.4.4.giga36" ]]; then + GIGAHORSE_BRANCH="v2.4.1.giga36" # old version + GIGAHORSE_VERSION=${GIGAHORSE_BRANCH#?} + fi url="https://github.com/madMAx43v3r/chia-gigahorse/releases/download/${GIGAHORSE_BRANCH}/chia-gigahorse-farmer-${GIGAHORSE_VERSION}-aarch64.tar.gz" echo "Pulling Madmax closed-source Chia farming binary from..." echo ${url} cd / && curl --retry 5 --retry-max-time 120 -skJLO ${url} du -hsc chia-gigahorse-farmer* - cksum chia-gigahorse-farmer* tar -xzf chia-gigahorse-farmer* fi fi From 8a0e88cfeff105f5e78a282c8b7703aaa81422e4 Mon Sep 17 00:00:00 2001 From: Guy Davis Date: Wed, 11 Dec 2024 10:38:04 -0700 Subject: [PATCH 5/8] Chia 2.5.0 rc2 --- scripts/forks/chia_install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/forks/chia_install.sh b/scripts/forks/chia_install.sh index f41ce144..7d183687 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.5.0-rc1/chia-blockchain-cli_2.5.0-rc1-1_amd64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.5.0-rc2/chia-blockchain-cli_2.5.0-rc2-1_amd64.deb apt-get install ./chia-blockchain-cli*.deb else - curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.5.0-rc1/chia-blockchain-cli_2.5.0-rc1-1_arm64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.5.0-rc2/chia-blockchain-cli_2.5.0-rc2-1_arm64.deb apt-get install ./chia-blockchain-cli*.deb fi From 9cebcd9df47b2b44a81f154dbcd7583dc6c28fb6 Mon Sep 17 00:00:00 2001 From: Guy Davis Date: Thu, 12 Dec 2024 13:04:38 -0700 Subject: [PATCH 6/8] Chia v2.5.0 --- CHANGELOG.md | 2 ++ scripts/forks/chia_install.sh | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4df1ed1..76300ba2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ All notable changes to this project will be documented in this file. The format ### Updated - [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.5.0) to v2.5.0 - misc improvements, see their release notes. - [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.4.4.giga36) to v2.4.4.giga36. NOTE: Only for AMD64, so ARM64 uses previous version. +### Notes + - Chia X.Y.0 releases have become quite buggy so I'm generally not bothering to release a full Machinaris X.Y.0 to match. ## [2.4.4] - 2024-10-17 ### Added diff --git a/scripts/forks/chia_install.sh b/scripts/forks/chia_install.sh index 7d183687..4943ad63 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.5.0-rc2/chia-blockchain-cli_2.5.0-rc2-1_amd64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.5.0/chia-blockchain-cli_2.5.0-1_amd64.deb apt-get install ./chia-blockchain-cli*.deb else - curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.5.0-rc2/chia-blockchain-cli_2.5.0-rc2-1_arm64.deb + curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.5.0/chia-blockchain-cli_2.5.0-1_arm64.deb apt-get install ./chia-blockchain-cli*.deb fi From e4d89c10a58a2dac9f25ec09784e0984fe49efcf Mon Sep 17 00:00:00 2001 From: Guy Davis Date: Fri, 3 Jan 2025 17:00:58 -0700 Subject: [PATCH 7/8] Gigahorse update. --- .github/workflows/develop-chia.yaml | 2 +- .github/workflows/main-chia.yaml | 2 +- .github/workflows/main-mmx.yaml | 2 +- .github/workflows/test-chia.yaml | 2 +- .github/workflows/test-mmx.yaml | 2 +- CHANGELOG.md | 6 +++--- scripts/forks/gigahorse_install.sh | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/develop-chia.yaml b/.github/workflows/develop-chia.yaml index 9d31a8b0..baa4b0b0 100644 --- a/.github/workflows/develop-chia.yaml +++ b/.github/workflows/develop-chia.yaml @@ -89,7 +89,7 @@ jobs: "UBUNTU_VER=jammy" "MACHINARIS_STREAM=develop" "CHIADOG_BRANCH=dev" - "GIGAHORSE_BRANCH=v2.4.4.giga36" + "GIGAHORSE_BRANCH=v2.5.0.giga36" "CHIA_BRANCH=main" "PLOTMAN_BRANCH=compress" tags: | diff --git a/.github/workflows/main-chia.yaml b/.github/workflows/main-chia.yaml index 79394acb..23ab9383 100644 --- a/.github/workflows/main-chia.yaml +++ b/.github/workflows/main-chia.yaml @@ -89,7 +89,7 @@ jobs: build-args: | "UBUNTU_VER=jammy" "MACHINARIS_STREAM=latest" - "GIGAHORSE_BRANCH=v2.4.4.giga36" + "GIGAHORSE_BRANCH=v2.5.0.giga36" "CHIA_BRANCH=main" tags: | ${{ secrets.DOCKERHUB_USERNAME }}/machinaris-gigahorse:latest diff --git a/.github/workflows/main-mmx.yaml b/.github/workflows/main-mmx.yaml index a7eba8eb..c843f3ac 100644 --- a/.github/workflows/main-mmx.yaml +++ b/.github/workflows/main-mmx.yaml @@ -46,7 +46,7 @@ jobs: "MACHINARIS_STREAM=latest" "CHIA_BRANCH=latest" "MMX_BRANCH=v0.10.6" - "GIGAHORSE_BRANCH=v2.4.4.giga36" + "GIGAHORSE_BRANCH=v2.5.0.giga36" tags: | ${{ secrets.DOCKERHUB_USERNAME }}/machinaris-mmx:latest ${{ secrets.DOCKERHUB_USERNAME }}/machinaris-mmx:v${{ github.event.inputs.version }} diff --git a/.github/workflows/test-chia.yaml b/.github/workflows/test-chia.yaml index cd32c743..a84951be 100644 --- a/.github/workflows/test-chia.yaml +++ b/.github/workflows/test-chia.yaml @@ -89,7 +89,7 @@ jobs: "UBUNTU_VER=jammy" "MACHINARIS_STREAM=test" "CHIADOG_BRANCH=dev" - "GIGAHORSE_BRANCH=v2.4.4.giga36" + "GIGAHORSE_BRANCH=v2.5.0.giga36" "CHIA_BRANCH=main" "PLOTMAN_BRANCH=development" tags: | diff --git a/.github/workflows/test-mmx.yaml b/.github/workflows/test-mmx.yaml index 79476288..95e18d15 100644 --- a/.github/workflows/test-mmx.yaml +++ b/.github/workflows/test-mmx.yaml @@ -46,7 +46,7 @@ jobs: "CHIA_BRANCH=latest" "PLOTMAN_BRANCH=development" "MMX_BRANCH=v0.10.6" - "GIGAHORSE_BRANCH=v2.4.4.giga36" + "GIGAHORSE_BRANCH=v2.5.0.giga36" tags: | ${{ secrets.DOCKERHUB_USERNAME }}/machinaris-mmx:test ghcr.io/${{ secrets.DOCKERHUB_USERNAME }}/machinaris-mmx:test diff --git a/CHANGELOG.md b/CHANGELOG.md index 76300ba2..34c1eb4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,15 +2,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [2.5.0] - Unreleased +## [2.5.0] - 2025-01-05 ### Added - New check to restart a farmer if pooling and no partials have been observed in the last hour. Thanks @aweigold! ### Changed ### Updated - [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.5.0) to v2.5.0 - misc improvements, see their release notes. - - [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.4.4.giga36) to v2.4.4.giga36. NOTE: Only for AMD64, so ARM64 uses previous version. + - [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.5.0.giga36) to v2.5.0.giga36. NOTE: Only for AMD64, so ARM64 uses an old version. ### Notes - - Chia X.Y.0 releases have become quite buggy so I'm generally not bothering to release a full Machinaris X.Y.0 to match. + - Chia X.Y.0 releases have become quite buggy, so I am delaying a matching Machinaris release by weeks for additional testing. ## [2.4.4] - 2024-10-17 ### Added diff --git a/scripts/forks/gigahorse_install.sh b/scripts/forks/gigahorse_install.sh index f31af6a6..b46669ff 100644 --- a/scripts/forks/gigahorse_install.sh +++ b/scripts/forks/gigahorse_install.sh @@ -24,7 +24,7 @@ else tar -xzf chia-gigahorse-farmer* else # Max broke ARM64 support in v2.4.4.giga36, have to downgrade to 2.4.1 - if [[ "${GIGAHORSE_BRANCH}" == "v2.4.4.giga36" ]]; then + if [[ "${GIGAHORSE_BRANCH}" == "v2.5.0.giga36" ]]; then GIGAHORSE_BRANCH="v2.4.1.giga36" # old version GIGAHORSE_VERSION=${GIGAHORSE_BRANCH#?} fi From db2bf638b7ac80774841583fe1890fdd5c53a9de Mon Sep 17 00:00:00 2001 From: Guy Davis Date: Fri, 3 Jan 2025 17:11:26 -0700 Subject: [PATCH 8/8] Release tomorrow. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 34c1eb4a..5b40f416 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [2.5.0] - 2025-01-05 +## [2.5.0] - 2025-01-04 ### Added - New check to restart a farmer if pooling and no partials have been observed in the last hour. Thanks @aweigold! ### Changed