Skip to content

Commit

Permalink
make streams public
Browse files Browse the repository at this point in the history
  • Loading branch information
clabby committed Feb 13, 2024
1 parent 629aa46 commit 5d834c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/mipsevm/src/mips/instrumented.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ pub struct InstrumentedState<O: Write, E: Write, P: PreimageOracle> {
pub state: State,
/// The MIPS thread context's stdout buffer.
/// TODO(clabby): Prob not the best place for this.
pub(crate) std_out: BufWriter<O>,
pub std_out: BufWriter<O>,
/// The MIPS thread context's stderr buffer.
/// TODO(clabby): Prob not the best place for this.
pub(crate) std_err: BufWriter<E>,
pub std_err: BufWriter<E>,
/// The last address we accessed in memory.
pub(crate) last_mem_access: Address,
/// Whether or not the memory proof generation is enabled.
Expand Down

0 comments on commit 5d834c9

Please sign in to comment.