Skip to content

Commit f0766d0

Browse files
authored
Merge pull request cashubtc#701 from luozexuan/main
chore: fix some typos in comment
2 parents f4c857c + 02fd849 commit f0766d0

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

crates/cdk-integration-tests/tests/happy_path_mint_wallet.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ async fn test_pay_invoice_twice() -> Result<()> {
439439
};
440440

441441
if ln_backend.map(|ln| ln.to_uppercase()) == Some("FAKEWALLET".to_string()) {
442-
// We can only preform this test on regtest backends as fake wallet just marks the quote as paid
442+
// We can only perform this test on regtest backends as fake wallet just marks the quote as paid
443443
return Ok(());
444444
}
445445

crates/cdk-mint-rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "cdk-mint-rpc"
33
version.workspace = true
44
edition.workspace = true
55
authors = ["CDK Developers"]
6-
description = "CDK mintd mint managment RPC client and server"
6+
description = "CDK mintd mint management RPC client and server"
77
license.workspace = true
88
homepage = "https://github.com/cashubtc/cdk"
99
repository = "https://github.com/cashubtc/cdk.git"

crates/cdk-mintd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ lnbits = ["dep:cdk-lnbits"]
2020
fakewallet = ["dep:cdk-fake-wallet"]
2121
grpc-processor = ["dep:cdk-payment-processor"]
2222
sqlcipher = ["cdk-sqlite/sqlcipher"]
23-
# MSRV is not commited to with redb enabled
23+
# MSRV is not committed to with redb enabled
2424
redb = ["dep:cdk-redb"]
2525
swagger = ["cdk-axum/swagger", "dep:utoipa", "dep:utoipa-swagger-ui"]
2626
redis = ["cdk-axum/redis"]

crates/cdk-mintd/src/env_vars/ln.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ impl Ln {
1919
if let Ok(backend) = backend_str.parse() {
2020
self.ln_backend = backend;
2121
} else {
22-
tracing::warn!("Unknow payment backend set in env var will attempt to use config file. {backend_str}");
22+
tracing::warn!("Unknown payment backend set in env var will attempt to use config file. {backend_str}");
2323
}
2424
}
2525

crates/cdk/src/wallet/multi_mint_wallet.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ impl MultiMintWallet {
340340
wallet.verify_token_p2pk(token, conditions)
341341
}
342342

343-
/// Verifys all proofs in toke have valid dleq proof
343+
/// Verifys all proofs in token have valid dleq proof
344344
#[instrument(skip(self, token))]
345345
pub async fn verify_token_dleq(
346346
&self,

0 commit comments

Comments
 (0)