Skip to content

Commit

Permalink
some visibility changes due to merging main into the branch fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Khashayar Barooti committed Jan 9, 2025
1 parent 63e9790 commit cb4ce4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/get_literal.nr
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ global LITERAL_OFFSET_SHIFT: [Field; 6] =
* @brief a JSON "literal" type has 3 states: "true", "false", "null".
* As such we can't directly convert to a bool and cover all possible cases
**/
struct JSONLiteral {
pub struct JSONLiteral {
value: Field,
}

Expand Down
2 changes: 1 addition & 1 deletion src/json.nr
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use crate::transcript_entry::{
/**
* @brief records a value in a json blob
**/
struct JSONValue<let MaxLength: u32> {
pub struct JSONValue<let MaxLength: u32> {
value: BoundedVec<u8, MaxLength>, // raw bytes that constitute the json value entry
value_type: Field, // either STRING_TOKEN, NUMERIC_TOKEN or LITERAL_TOKEN
}
Expand Down

0 comments on commit cb4ce4d

Please sign in to comment.