Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Ad96el committed Jan 26, 2024
1 parent c0eb0bf commit e7a04ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ async fn main() -> anyhow::Result<()> {

#[cfg(feature = "spiritnet")]
log::info!(
"Spiritnet features are enabled. WSS adress is set to: {}",
"Spiritnet features are enabled. WSS address is set to: {}",
&config.kilt_endpoint
);

#[cfg(not(feature = "spiritnet"))]
log::info!(
"Peregrine features are enabled. WSS adress is set to: {}",
"Peregrine features are enabled. WSS address is set to: {}",
&config.kilt_endpoint
);

Expand All @@ -87,7 +87,7 @@ async fn main() -> anyhow::Result<()> {

let encryption_key = config
.get_nacl_secret_key()
.context("Creationg of encryption key failed.")?;
.context("Creating of encryption key failed.")?;

let well_known_did_config = create_well_known_did_config(&config.well_known_did_config)
.context("Creating well known did config should not fail.")?;
Expand Down

0 comments on commit e7a04ce

Please sign in to comment.