Skip to content

Commit 61a1c75

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

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
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)

vm/src/air_private_input.rs

Lines changed: 2 additions & 2 deletions
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)