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

Commit

Permalink
expose more crates
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptoAtwill committed Oct 9, 2023
1 parent 326d56d commit 5a713b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ipc/provider/src/config/deserialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ where
}

/// A serde deserialization method to deserialize an eth address from string, i.e. "0x...."
pub(crate) fn deserialize_eth_address_from_str<'de, D>(
pub fn deserialize_eth_address_from_str<'de, D>(
deserializer: D,
) -> anyhow::Result<Address, D::Error>
where
Expand Down
4 changes: 2 additions & 2 deletions ipc/provider/src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
//! Reads a TOML config file for the IPC Agent and deserializes it in a type-safe way into a
//! [`Config`] struct.
mod deserialize;
pub mod deserialize;
mod reload;
pub mod subnet;

mod serialize;
pub mod serialize;
#[cfg(test)]
mod tests;

Expand Down

0 comments on commit 5a713b4

Please sign in to comment.