Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix formatting issue #1476

Merged
merged 3 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion identity_iota_core/src/rebased/client/read_only.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl IdentityClientReadOnly {
}

/// Attempts to create a new [`IdentityClientReadOnly`] from a given [`IotaClient`].

///
/// # Failures
/// This function fails if the provided `iota_client` is connected to an unrecognized
/// network.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use iota_sdk::types::base_types::ObjectID;
use phf::{phf_map, Map};
use phf::phf_map;
use phf::Map;

/// A Mapping `network_id` -> metadata needed by the library.
pub(crate) static IOTA_NETWORKS: Map<&str, IdentityNetworkMetadata> = phf_map! {
Expand Down
Loading