From a89891aba85adb2f37f69891f50d7b1231879315 Mon Sep 17 00:00:00 2001 From: FrancoGiachetta Date: Mon, 11 Nov 2024 15:41:55 -0300 Subject: [PATCH] make public --- crates/gateway/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/gateway/src/lib.rs b/crates/gateway/src/lib.rs index 166a16edc9..fe5bc05321 100644 --- a/crates/gateway/src/lib.rs +++ b/crates/gateway/src/lib.rs @@ -4,11 +4,11 @@ mod compiler_version; pub mod config; pub mod errors; pub mod gateway; -mod rpc_objects; -mod rpc_state_reader; +pub mod rpc_objects; +pub mod rpc_state_reader; #[cfg(test)] mod rpc_state_reader_test; -mod state_reader; +pub mod state_reader; #[cfg(test)] mod state_reader_test_utils; mod stateful_transaction_validator;