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

chore: fix some typos #4227

Merged
merged 1 commit into from
Feb 13, 2025
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 src/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/subcommand/wallet/offer/accept.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() &&
Expand Down
2 changes: 1 addition & 1 deletion src/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
)
Expand Down
2 changes: 1 addition & 1 deletion src/wallet/wallet_constructor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ impl WalletConstructor {
if !self.no_sync {
for i in 0.. {
let ord_block_count = self.get("/blockcount")?.text()?.parse::<u64>().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 {
Expand Down
Loading