Summary
The dry-run testing instructions in the miner bounty ask users to run:
python3 rustchain_linux_miner.py --dry-run --show-payload
devlog/DEVELOPMENT_LOG.md also mentions --show-payload as added. But the current miners/linux/rustchain_linux_miner.py argument parser rejects that flag.
Reproduction
From a fresh clone:
cd miners/linux
python rustchain_linux_miner.py --dry-run --show-payload
Actual result
usage: rustchain_linux_miner.py [-h] [--version] [--wallet WALLET]
[--wart-address WART_ADDRESS]
[--wart-pool WART_POOL]
[--bzminer-path BZMINER_PATH]
[--manage-bzminer] [--dry-run]
rustchain_linux_miner.py: error: unrecognized arguments: --show-payload
Expected result
Either:
--show-payload should be implemented for the Linux miner dry-run path, or
- docs/bounty instructions should remove
--show-payload and use the currently supported command:
python rustchain_linux_miner.py --dry-run
Environment
- OS: Windows 11 Home 64-bit
- CPU: AMD Ryzen 5 3600 6-Core Processor, 6 cores / 12 logical processors
- Python: 3.13.2
- Repo path:
miners/linux/rustchain_linux_miner.py
Summary
The dry-run testing instructions in the miner bounty ask users to run:
devlog/DEVELOPMENT_LOG.mdalso mentions--show-payloadas added. But the currentminers/linux/rustchain_linux_miner.pyargument parser rejects that flag.Reproduction
From a fresh clone:
cd miners/linux python rustchain_linux_miner.py --dry-run --show-payloadActual result
Expected result
Either:
--show-payloadshould be implemented for the Linux miner dry-run path, or--show-payloadand use the currently supported command:Environment
miners/linux/rustchain_linux_miner.py