Skip to content

Commit

Permalink
fix typo in ROM_BOOTSTRAP_GENERATOR references
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-o-how committed Jan 7, 2025
1 parent 2ad9dbd commit 08e956d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions chia/_tests/generator/test_compression.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions chia/simulator/block_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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),
Expand Down

0 comments on commit 08e956d

Please sign in to comment.