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) ## Byte (Stock)
- [x] Shutdowns - [x] Shutdowns
- [ ] Power Modes - [x] Power Modes
- [ ] Setpoints - [ ] Setpoints
- [ ] Presets - [ ] Presets

View File

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

View File

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