From 1d5bd7c82150f0be0ab11e6831cee92298cbce6f Mon Sep 17 00:00:00 2001 From: daywalker90 Date: Sun, 9 Aug 2026 17:44:13 +0200 Subject: [PATCH] remove since filter because we now dedup all events by id --- src/nwc.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/nwc.rs b/src/nwc.rs index 7b5ff6d..e6beb81 100644 --- a/src/nwc.rs +++ b/src/nwc.rs @@ -19,7 +19,6 @@ use tokio::time; use crate::{ OPT_NOTIFICATIONS, - STARTUP_DELAY, nwc_balance::get_balance_response, nwc_hold::{ cancel_hold_invoice_response, @@ -105,8 +104,7 @@ pub async fn run_nwc( let filter = Filter::new() .kind(Kind::WalletConnectRequest) - .author(client_keys_clone.public_key()) - .since(Timestamp::now() - STARTUP_DELAY - 1); + .author(client_keys_clone.public_key()); let mut notifications = nostr_client_clone.notifications();