Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
block id is public (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
guipublic authored Mar 15, 2023
1 parent 0b305b7 commit 4d58055
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acir/src/circuit/opcodes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use crate::BlackBoxFunc;
use serde::{Deserialize, Serialize};

#[derive(Clone, PartialEq, Eq, Serialize, Deserialize, Hash, Copy, Default)]
pub struct BlockId(u32);
pub struct BlockId(pub u32);

/// Operation on a block
/// We can either write or read at a block index
Expand Down

0 comments on commit 4d58055

Please sign in to comment.