Skip to content

Commit

Permalink
when validating blocks in the blockchain, we don't use strict-mode (s…
Browse files Browse the repository at this point in the history
…afe mode) (Chia-Network#9544)
  • Loading branch information
arvidn authored Dec 11, 2021
1 parent c663745 commit 5076348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/consensus/multiprocess_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def batch_pre_validate_blocks(
block_generator,
min(constants.MAX_BLOCK_COST_CLVM, block.transactions_info.cost),
cost_per_byte=constants.COST_PER_BYTE,
safe_mode=True,
safe_mode=False,
)
removals, tx_additions = tx_removals_and_additions(npc_result.npc_list)

Expand Down

0 comments on commit 5076348

Please sign in to comment.