From 08e956d9f64cdbc7d703041b184824841cca67d5 Mon Sep 17 00:00:00 2001 From: Matthew Howard Date: Tue, 7 Jan 2025 13:52:14 +0000 Subject: [PATCH] fix typo in ROM_BOOTSTRAP_GENERATOR references --- chia/_tests/generator/test_compression.py | 4 ++-- chia/simulator/block_tools.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/chia/_tests/generator/test_compression.py b/chia/_tests/generator/test_compression.py index 2742342021c2..6ec973fa7f26 100644 --- a/chia/_tests/generator/test_compression.py +++ b/chia/_tests/generator/test_compression.py @@ -10,7 +10,7 @@ DECOMPRESS_COIN_SPEND_ENTRY, DECOMPRESS_COIN_SPEND_ENTRY_WITH_PREFIX, DECOMPRESS_PUZZLE, - ROM_BOOTSRAP_GENERATOR, + ROM_BOOTSTRAP_GENERATOR, ) from chia_rs import serialized_length from clvm.serialize import sexp_from_stream @@ -25,7 +25,7 @@ DESERIALIZE_MOD = Program.from_bytes(CHIALISP_DESERIALISATION) -GENERATOR_MOD: Program = Program.from_bytes(ROM_BOOTSRAP_GENERATOR) +GENERATOR_MOD: Program = Program.from_bytes(ROM_BOOTSTRAP_GENERATOR) DECOMPRESS_PUZZLE = Program.from_bytes(DECOMPRESS_PUZZLE) diff --git a/chia/simulator/block_tools.py b/chia/simulator/block_tools.py index 992bdf96c299..d86321b5227d 100644 --- a/chia/simulator/block_tools.py +++ b/chia/simulator/block_tools.py @@ -17,7 +17,7 @@ from typing import Any, Callable, Optional import anyio -from chia_puzzles_py.programs import CHIALISP_DESERIALISATION, ROM_BOOTSRAP_GENERATOR +from chia_puzzles_py.programs import CHIALISP_DESERIALISATION, ROM_BOOTSTRAP_GENERATOR from chia_rs import ALLOW_BACKREFS, MEMPOOL_MODE, AugSchemeMPL, G1Element, G2Element, PrivateKey, solution_generator from chia.consensus.block_creation import create_unfinished_block, unfinished_block_to_full_block @@ -117,7 +117,7 @@ DESERIALIZE_MOD = Program.from_bytes(CHIALISP_DESERIALISATION) -GENERATOR_MOD: SerializedProgram = SerializedProgram.from_bytes(ROM_BOOTSRAP_GENERATOR) +GENERATOR_MOD: SerializedProgram = SerializedProgram.from_bytes(ROM_BOOTSTRAP_GENERATOR) test_constants = DEFAULT_CONSTANTS.replace( MIN_PLOT_SIZE=uint8(18),