Skip to content

Commit 3ad0c75

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

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@
4545

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

48+
* chore: Expose fields in `AirPrivateInputSerializable` as public for external access [#1900] (https://github.com/lambdaclass/cairo-vm/pull/1900)
49+
4850
* fix: Change wildcard getrandom dependency.
4951

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

Diff for: 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)