Skip to content

Commit

Permalink
Make deser func pub
Browse files Browse the repository at this point in the history
  • Loading branch information
iduartgomez committed Feb 18, 2024
1 parent 0aff12d commit f28e671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/src/contract_interface.rs
Expand Up @@ -742,7 +742,7 @@ impl StateSummary<'_> {
StateSummary(self.0.into_owned().into())
}

pub(crate) fn deser_state_summary<'de, D>(deser: D) -> Result<StateSummary<'static>, D::Error>
pub fn deser_state_summary<'de, D>(deser: D) -> Result<StateSummary<'static>, D::Error>
where
D: serde::Deserializer<'de>,
{
Expand Down

0 comments on commit f28e671

Please sign in to comment.