diff --git a/crates/blockifier/resources/versioned_constants.json b/crates/blockifier/resources/versioned_constants.json index 7fc31ab16a..4020e8d97d 100644 --- a/crates/blockifier/resources/versioned_constants.json +++ b/crates/blockifier/resources/versioned_constants.json @@ -32,7 +32,6 @@ "entry_point_gas_cost": 1, "step_gas_cost": 827, "range_check_gas_cost": 15 - }, "constructor_entry_point_selector": "0x28ffe4ff0f226a9107253e17a904099aa4f63a02a5621de0576e5aa71bc5194", "default_entry_point_selector": 0, @@ -68,7 +67,6 @@ "get_block_hash_gas_cost": { "step_gas_cost": 104, "range_check_gas_cost": 2 - }, "get_execution_info_gas_cost": { "step_gas_cost": 100, @@ -217,7 +215,7 @@ "n_memory_holes": 0 }, "Deploy": { - "n_steps": 1097, + "n_steps": 1099, "builtin_instance_counter": { "pedersen_builtin": 7, "range_check_builtin": 18 @@ -420,10 +418,11 @@ "Declare": { "deprecated_resources": { "constant": { - "n_steps": 2973, + "n_steps": 3099, "builtin_instance_counter": { "pedersen_builtin": 16, - "range_check_builtin": 53 + "range_check_builtin": 56, + "poseidon_builtin": 4 }, "n_memory_holes": 0 }, @@ -435,11 +434,11 @@ }, "resources": { "constant": { - "n_steps": 3079, + "n_steps": 3231, "builtin_instance_counter": { "pedersen_builtin": 4, - "range_check_builtin": 58, - "poseidon_builtin": 10 + "range_check_builtin": 64, + "poseidon_builtin": 14 }, "n_memory_holes": 0 }, @@ -453,7 +452,7 @@ "DeployAccount": { "deprecated_resources": { "constant": { - "n_steps": 4015, + "n_steps": 4020, "builtin_instance_counter": { "pedersen_builtin": 23, "range_check_builtin": 72 @@ -470,10 +469,10 @@ }, "resources": { "constant": { - "n_steps": 4137, + "n_steps": 4169, "builtin_instance_counter": { "pedersen_builtin": 11, - "range_check_builtin": 77, + "range_check_builtin": 80, "poseidon_builtin": 10 }, "n_memory_holes": 0 @@ -490,7 +489,7 @@ "InvokeFunction": { "deprecated_resources": { "constant": { - "n_steps": 3763, + "n_steps": 3769, "builtin_instance_counter": { "pedersen_builtin": 14, "range_check_builtin": 69 @@ -507,10 +506,10 @@ }, "resources": { "constant": { - "n_steps": 3904, + "n_steps": 3942, "builtin_instance_counter": { "pedersen_builtin": 4, - "range_check_builtin": 74, + "range_check_builtin": 77, "poseidon_builtin": 11 }, "n_memory_holes": 0 @@ -527,7 +526,7 @@ "L1Handler": { "deprecated_resources": { "constant": { - "n_steps": 1233, + "n_steps": 1234, "builtin_instance_counter": { "pedersen_builtin": 11, "range_check_builtin": 16 @@ -617,4 +616,4 @@ 100 ] } -} +} \ No newline at end of file diff --git a/crates/blockifier/src/transaction/account_transactions_test.rs b/crates/blockifier/src/transaction/account_transactions_test.rs index d47cc3650d..82faa7eaca 100644 --- a/crates/blockifier/src/transaction/account_transactions_test.rs +++ b/crates/blockifier/src/transaction/account_transactions_test.rs @@ -110,7 +110,7 @@ fn test_circuit(block_context: BlockContext, max_resource_bounds: DeprecatedReso .unwrap(); assert!(tx_execution_info.revert_error.is_none()); - assert_eq!(tx_execution_info.receipt.gas, GasVector::from_l1_gas(6682)); + assert_eq!(tx_execution_info.receipt.gas, GasVector::from_l1_gas(6688)); } #[rstest] @@ -152,7 +152,7 @@ fn test_rc96_holes( [&BuiltinName::range_check96], 24 ); - assert_eq!(tx_execution_info.receipt.gas, GasVector::from_l1_gas(6598)); + assert_eq!(tx_execution_info.receipt.gas, GasVector::from_l1_gas(6604)); } #[rstest]