diff --git a/src/index.rs b/src/index.rs index 55541a8198..24737e63c6 100644 --- a/src/index.rs +++ b/src/index.rs @@ -6753,7 +6753,7 @@ mod tests { #[test] fn assert_schema_statistic_key_is_zero() { - // other schema statistic keys may chenge when the schema changes, but for + // other schema statistic keys may change when the schema changes, but for // good error messages in older versions, the schema statistic key must be // zero assert_eq!(Statistic::Schema.key(), 0); diff --git a/src/subcommand/wallet/offer/accept.rs b/src/subcommand/wallet/offer/accept.rs index a96946b582..510de54d8b 100644 --- a/src/subcommand/wallet/offer/accept.rs +++ b/src/subcommand/wallet/offer/accept.rs @@ -114,7 +114,7 @@ impl Accept { { let signed_tx = Transaction::consensus_decode(&mut signed_tx.as_slice()) - .context("unable to decode finalized transction")?; + .context("unable to decode finalized transaction")?; ensure! { signed_tx.input.len() == psbt.inputs.len() && diff --git a/src/wallet.rs b/src/wallet.rs index e138f7bf66..1d6c8ca839 100644 --- a/src/wallet.rs +++ b/src/wallet.rs @@ -240,7 +240,7 @@ impl Wallet { self .output_info .get(output) - .ok_or(anyhow!("outpout not found in wallet"))? + .ok_or(anyhow!("output not found in wallet"))? .inscriptions .clone(), ) diff --git a/src/wallet/wallet_constructor.rs b/src/wallet/wallet_constructor.rs index 075230be41..72c3b193fb 100644 --- a/src/wallet/wallet_constructor.rs +++ b/src/wallet/wallet_constructor.rs @@ -94,7 +94,7 @@ impl WalletConstructor { if !self.no_sync { for i in 0.. { let ord_block_count = self.get("/blockcount")?.text()?.parse::().expect( - "wallet failed to retreive block count from server. Make sure `ord server` is running.", + "wallet failed to retrieve block count from server. Make sure `ord server` is running.", ); if ord_block_count >= bitcoin_block_count {