Skip to content

Commit

Permalink
NO_RELATIVE_CONDITIONS_ON_EPHEMERAL is always enabled in chia_rs 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
arvidn committed Jun 10, 2024
1 parent 1f883fc commit 04c8034
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions chia/full_node/mempool_check_conditions.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
ENABLE_MESSAGE_CONDITIONS,
ENABLE_SOFTFORK_CONDITION,
MEMPOOL_MODE,
NO_RELATIVE_CONDITIONS_ON_EPHEMERAL,
)
from chia_rs import get_puzzle_and_solution_for_coin as get_puzzle_and_solution_for_coin_rust
from chia_rs import run_block_generator, run_block_generator2, run_chia_program
Expand Down Expand Up @@ -41,7 +40,7 @@


def get_flags_for_height_and_constants(height: int, constants: ConsensusConstants) -> int:
flags = NO_RELATIVE_CONDITIONS_ON_EPHEMERAL
flags = 0

if height >= constants.SOFT_FORK4_HEIGHT:
flags = flags | ENABLE_MESSAGE_CONDITIONS
Expand Down

0 comments on commit 04c8034

Please sign in to comment.