diff --git a/electrumx/server/block_processor.py b/electrumx/server/block_processor.py index 3f1d221c..bf8e9e4b 100644 --- a/electrumx/server/block_processor.py +++ b/electrumx/server/block_processor.py @@ -3137,9 +3137,9 @@ def create_or_delete_subname_payment_output_if_valid(self, tx_hash, tx, tx_num, return None, False # Make sure the payment type for the right type subrealm or dmitem is correct if entity_type == 'subrealm' and db_prefix != b'spay': - return tx_hash, False + return None, False if entity_type == 'dmitem' and db_prefix != b'dmpay': - return tx_hash, False + return None, False # Rebuild the blueprint builder here blueprint_builder = AtomicalsTransferBlueprintBuilder(self.logger, atomicals_spent_at_inputs, operations_found_at_inputs, tx_hash, tx, self.get_atomicals_id_mint_info, self.is_dmint_activated(height))