Skip to content
This repository was archived by the owner on Jun 10, 2025. It is now read-only.

Commit 5d834c9

Browse files
committed
make streams public
1 parent 629aa46 commit 5d834c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/mipsevm/src/mips/instrumented.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ pub struct InstrumentedState<O: Write, E: Write, P: PreimageOracle> {
1616
pub state: State,
1717
/// The MIPS thread context's stdout buffer.
1818
/// TODO(clabby): Prob not the best place for this.
19-
pub(crate) std_out: BufWriter<O>,
19+
pub std_out: BufWriter<O>,
2020
/// The MIPS thread context's stderr buffer.
2121
/// TODO(clabby): Prob not the best place for this.
22-
pub(crate) std_err: BufWriter<E>,
22+
pub std_err: BufWriter<E>,
2323
/// The last address we accessed in memory.
2424
pub(crate) last_mem_access: Address,
2525
/// Whether or not the memory proof generation is enabled.

0 commit comments

Comments
 (0)