pool-reference
pool-reference copied to clipboard
Can't start pool
(venv) root@chia-pool:~/pool-reference# CHIA_ROOT="/root/.chia/mainnet/" ./venv/bin/python -m pool
Traceback (most recent call last):
File "/usr/lib/python3.10/runpy.py", line 196, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/usr/lib/python3.10/runpy.py", line 86, in _run_code
exec(code, run_globals)
File "/root/pool-reference/pool/main.py", line 1, in
This is caused by some changes. please change following line in /root/pool-reference/pool/singleton.py
from chia.types.blockchain_format.program import Program, SerializedProgram
to
from chia.types.blockchain_format.serialized_program import Program, SerializedProgram.
Cheers.
I sent https://github.com/Chia-Network/pool-reference/pull/287 to address this. Thank you both!