From f1f63aaef04d48ebdba93f4669a44efca54210c8 Mon Sep 17 00:00:00 2001 From: arvidn Date: Mon, 10 Jun 2024 12:43:22 +0200 Subject: [PATCH] NO_RELATIVE_CONDITIONS_ON_EPHEMERAL is always enabled in chia_rs 0.10.0 --- chia/full_node/mempool_check_conditions.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/chia/full_node/mempool_check_conditions.py b/chia/full_node/mempool_check_conditions.py index c0768a7cc97c..83f6c34af7da 100644 --- a/chia/full_node/mempool_check_conditions.py +++ b/chia/full_node/mempool_check_conditions.py @@ -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 @@ -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