diff --git a/crates/blockifier/resources/versioned_constants_0_13_4.json b/crates/blockifier/resources/versioned_constants_0_13_4.json index 1bf7c6fd66..c882b8cbb1 100644 --- a/crates/blockifier/resources/versioned_constants_0_13_4.json +++ b/crates/blockifier/resources/versioned_constants_0_13_4.json @@ -44,6 +44,7 @@ "max_recursion_depth": 50, "segment_arena_cells": false, "os_constants": { + "alias_contract_address": 2, "block_hash_contract_address": 1, "call_contract_gas_cost": { "entry_point_gas_cost": 1, @@ -125,6 +126,7 @@ "step_gas_cost": 104, "range_check_gas_cost": 1 }, + "reserved_contract_address": 3, "secp256k1_add_gas_cost": { "range_check_gas_cost": 29, "step_gas_cost": 410 diff --git a/crates/blockifier/src/versioned_constants.rs b/crates/blockifier/src/versioned_constants.rs index f081f5696a..ab31cb18ae 100644 --- a/crates/blockifier/src/versioned_constants.rs +++ b/crates/blockifier/src/versioned_constants.rs @@ -651,7 +651,8 @@ impl OsConstants { // not used by the blockifier but included for transparency. These constanst will be ignored // during the creation of the struct containing the gas costs. - const ADDITIONAL_FIELDS: [&'static str; 29] = [ + const ADDITIONAL_FIELDS: [&'static str; 31] = [ + "alias_contract_address", "block_hash_contract_address", "constructor_entry_point_selector", "default_entry_point_selector", @@ -673,6 +674,7 @@ impl OsConstants { "l1_data_gas", "l1_data_gas_index", "nop_entry_point_offset", + "reserved_contract_address", "sierra_array_len_bound", "stored_block_hash_buffer", "transfer_entry_point_selector",