Skip to content

Commit 4000335

Browse files
committed
fix: make OutputBuiltinState public
The output state related functions (ex: `set_state`) are unusable if this struct is private.
1 parent f7a37e1 commit 4000335

File tree

1 file changed

+1
-1
lines changed
  • vm/src/vm/runners/builtin_runner

1 file changed

+1
-1
lines changed

vm/src/vm/runners/builtin_runner/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ pub use hash::HashBuiltinRunner;
4848
pub use keccak::KeccakBuiltinRunner;
4949
pub use modulo::ModBuiltinRunner;
5050
use num_integer::div_floor;
51-
pub use output::OutputBuiltinRunner;
51+
pub use output::{OutputBuiltinRunner, OutputBuiltinState};
5252
pub use poseidon::PoseidonBuiltinRunner;
5353
pub use range_check::RangeCheckBuiltinRunner;
5454
pub use segment_arena::SegmentArenaBuiltinRunner;

0 commit comments

Comments
 (0)