bug: remove print statements

This commit is contained in:
Brett Rowan
2025-08-14 13:25:05 -06:00
parent 9bc3cc221a
commit b099ff45d2
3 changed files with 7 additions and 9 deletions

View File

@@ -4,7 +4,7 @@
## Byte (Stock)
- [x] Shutdowns
- [ ] Power Modes
- [x] Power Modes
- [ ] Setpoints
- [ ] Presets

View File

@@ -600,12 +600,6 @@ details {
<details>
<summary>Stock Firmware Goldshells:</summary>
<ul>
<details>
<summary>Byte Series:</summary>
<ul>
<li><a href="../goldshell/Byte#byte-stock">Byte (Stock)</a></li>
</ul>
</details>
<details>
<summary>X5 Series:</summary>
<ul>
@@ -627,6 +621,12 @@ details {
<li><a href="../goldshell/XBox#kd-box-pro-stock">KD Box Pro (Stock)</a></li>
</ul>
</details>
<details>
<summary>Byte Series:</summary>
<ul>
<li><a href="../goldshell/Byte#byte-stock">Byte (Stock)</a></li>
</ul>
</details>
</ul>
</details>
<details>

View File

@@ -1012,8 +1012,6 @@ class BTMinerV3(StockFirmware):
board_count = (
rpc_get_device_info.get("msg", {}).get("hardware", {}).get("boards", 3)
)
print(rpc_get_miner_status_edevs)
print(rpc_get_device_info)
edevs = rpc_get_miner_status_edevs.get("msg", {}).get("edevs", [])
for idx in range(board_count):
board_data = edevs[idx] if idx < len(edevs) else {}