mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-03 10:05:00 -05:00
* add simulator tool + tests into chia blockchain add chia dev ... * isort * make sim chia root use normal chia root as a part of it * fix starting path for tests * cleanup start and stop + cli * add extra env message * fix cmds * update test * add existing_plots arg * change to consume_errors * fix tests * cleanup cmds_util.py * cleanup click * clean up block_tools dataclass + logic cleanup & tests * isort block_tools.py
15 lines
244 B
Python
15 lines
244 B
Python
from __future__ import annotations
|
|
|
|
import click
|
|
|
|
from chia.cmds.sim import sim_cmd
|
|
|
|
|
|
@click.group("dev", help="Developer commands and tools")
|
|
@click.pass_context
|
|
def dev_cmd(ctx: click.Context) -> None:
|
|
pass
|
|
|
|
|
|
dev_cmd.add_command(sim_cmd)
|