Skip to content

Commit d9d8e52

Browse files
committed
stavbe: change AirPrivateInputSerializable fields to public
1 parent 3de653d commit d9d8e52

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
* fix: Check overflow in cairo pie address calculation [#1945](https://github.com/lambdaclass/cairo-vm/pull/1945)
88

9+
* chore: Expose 'trace_path' and 'memory_path' fields in `AirPrivateInputSerializable` as public for external access [#1900] (https://github.com/lambdaclass/cairo-vm/pull/1900)
10+
911
#### [2.0.0-rc5] - 2025-02-24
1012

1113
* fix: Fix Cairo Pie limiting the number of segments to 2^16 [#1960](https://github.com/lambdaclass/cairo-vm/pull/1960)
@@ -45,6 +47,8 @@
4547

4648
* feat: Add support for subtractions containing references as right hand side operands [#1898](https://github.com/lambdaclass/cairo-vm/pull/1898)
4749

50+
* chore: Expose 'trace_path' and 'memory_path' in `AirPrivateInputSerializable` as public for external access [#1900] (https://github.com/lambdaclass/cairo-vm/pull/1900)
51+
4852
* fix: Change wildcard getrandom dependency.
4953

5054
* Update starknet-crypto to 0.7.3, removing the old FieldElement completly in favour of the new Felt (that is Copy).

vm/src/air_private_input.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ use crate::Felt252;
1212
// Serializable format, matches the file output of the python implementation
1313
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq)]
1414
pub struct AirPrivateInputSerializable {
15-
trace_path: String,
16-
memory_path: String,
15+
pub trace_path: String,
16+
pub memory_path: String,
1717
#[serde(skip_serializing_if = "Option::is_none")]
1818
pedersen: Option<Vec<PrivateInput>>,
1919
#[serde(skip_serializing_if = "Option::is_none")]

0 commit comments

Comments
 (0)