Skip to content

Commit d5e15dd

Browse files
authored
Merge pull request #1001 from guydavis/develop
Chia @ v2.4.4
2 parents 0f2c026 + 8c3f5e0 commit d5e15dd

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
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).
44

5-
## [2.4.4] - 2024-10-?
5+
## [2.4.4] - 2024-10-17
66
### Added
77
### Changed
88
### Updated

scripts/forks/chia_install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ else
2727
echo "Installing Chia CUDA binaries on ${arch_name}..."
2828
cd /tmp
2929
if [[ "${arch_name}" == "x86_64" ]]; then
30-
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.4-rc2/chia-blockchain-cli_2.4.4-rc2-1_amd64.deb
30+
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.4/chia-blockchain-cli_2.4.4-1_amd64.deb
3131
apt-get install ./chia-blockchain-cli*.deb
3232
else
33-
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.4-rc2/chia-blockchain-cli_2.4.4-rc2-1_arm64.deb
33+
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.4/chia-blockchain-cli_2.4.4-1_arm64.deb
3434
apt-get install ./chia-blockchain-cli*.deb
3535
fi
3636

scripts/pull_3rd_party_libs.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ LEAFLET_VERSION=1.9.4
1313

1414
# List of other css/js links
1515
LIST="
16-
https://cdn.datatables.net/2.1.4/css/dataTables.bootstrap5.css
17-
https://cdn.datatables.net/2.1.4/js/dataTables.bootstrap5.js
18-
https://cdn.datatables.net/2.1.4/js/dataTables.min.js
16+
https://cdn.datatables.net/2.1.8/css/dataTables.bootstrap5.css
17+
https://cdn.datatables.net/2.1.8/js/dataTables.bootstrap5.js
18+
https://cdn.datatables.net/2.1.8/js/dataTables.min.js
1919
https://cdn.jsdelivr.net/npm/chart.js@4.4.4/dist/chart.umd.js.map
2020
https://cdn.jsdelivr.net/npm/chart.js@4.4.4/dist/chart.umd.min.js
2121
https://cdn.jsdelivr.net/npm/chartjs-adapter-luxon@1.3.1/dist/chartjs-adapter-luxon.umd.min.js

web/models/chia.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ def parse_chia(self, connection, blockchain, geoip_cache, lang):
775775
'mib_up': float(vals[7].split('|')[0]),
776776
'mib_down': float(vals[7].split('|')[1])
777777
}
778-
if len(vals) > 9: # HDDCoin keeps SBHeight and Hash on same line
778+
if len(vals) > 9 and vals[8] != '-Trusted:': # HDDCoin keeps SBHeight and Hash on same line
779779
connection['height'] = vals[8]
780780
connection['hash'] = vals[9]
781781
try:

0 commit comments

Comments
 (0)