From 8737acaac2a79f8a8ac9b3741768eca5806f9461 Mon Sep 17 00:00:00 2001 From: thesimplekid Date: Wed, 3 May 2023 17:00:33 -0400 Subject: [PATCH] ci: typos --- .github/workflows/lint.yml | 2 ++ Cargo.lock | 8 ++++---- src/main.rs | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 2eef487..1271d72 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,6 +15,8 @@ jobs: steps: - name: Checkout Crate uses: actions/checkout@v3 + - name: typos-action + uses: crate-ci/typos@v1.0.4 - name: Set Toolchain # https://github.com/dtolnay/rust-toolchain uses: dtolnay/rust-toolchain@stable diff --git a/Cargo.lock b/Cargo.lock index 36c9894..01be1d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -174,7 +174,7 @@ dependencies = [ ] [[package]] -name = "cln-nostr-connect" +name = "cln-nostr-wallet-connect" version = "0.1.0-ALPHA" dependencies = [ "anyhow", @@ -644,7 +644,7 @@ dependencies = [ [[package]] name = "nostr" version = "0.21.0" -source = "git+https://github.com/thesimplekid/nostr?branch=nip47#dd7784127d750aef3d48954c54d80f5bc0e5d246" +source = "git+https://github.com/thesimplekid/nostr?branch=nip47#ea7bd43fdc2816129f52b92d173486da3e9e13f8" dependencies = [ "aes", "base64 0.21.0", @@ -664,7 +664,7 @@ dependencies = [ [[package]] name = "nostr-sdk" version = "0.21.0" -source = "git+https://github.com/thesimplekid/nostr?branch=nip47#dd7784127d750aef3d48954c54d80f5bc0e5d246" +source = "git+https://github.com/thesimplekid/nostr?branch=nip47#ea7bd43fdc2816129f52b92d173486da3e9e13f8" dependencies = [ "gloo-timers", "log", @@ -678,7 +678,7 @@ dependencies = [ [[package]] name = "nostr-sdk-net" version = "0.21.0" -source = "git+https://github.com/thesimplekid/nostr?branch=nip47#dd7784127d750aef3d48954c54d80f5bc0e5d246" +source = "git+https://github.com/thesimplekid/nostr?branch=nip47#ea7bd43fdc2816129f52b92d173486da3e9e13f8" dependencies = [ "futures-util", "thiserror", diff --git a/src/main.rs b/src/main.rs index 7c2f466..d89ba3f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -182,7 +182,7 @@ async fn main() -> anyhow::Result<()> { // Check event is from correct pubkey if event.pubkey.ne(&connect_client_keys.public_key()) { - // TODO: Should respons with unauth + // TODO: Should respond with unauth info!("Event from incorrect pubkey: {}", event.pubkey.to_string()); continue; }