upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/src/lib/client.rs
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2024-09-11 12:52:46 +0100
committerDanConwayDev <DanConwayDev@protonmail.com>2024-09-11 13:05:57 +0100
commitdf1660b1b78b5881c64c6fadd4ae12c8c01c6684 (patch)
tree044bcfc85d3cffe3ede73e1285cacaf30aaa981d /src/lib/client.rs
parentdb17699af4b0ec839b8340766aab91bacf974cd4 (diff)
refactor: fix fmt and clippy issues
which potentially were only identified when a dependancy was updated
Diffstat (limited to 'src/lib/client.rs')
-rw-r--r--src/lib/client.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/client.rs b/src/lib/client.rs
index c29d4b9..455725c 100644
--- a/src/lib/client.rs
+++ b/src/lib/client.rs
@@ -145,7 +145,7 @@ impl Connect for Client {
145 Client { 145 Client {
146 client: nostr_sdk::ClientBuilder::new() 146 client: nostr_sdk::ClientBuilder::new()
147 .opts(Options::new().relay_limits(RelayLimits::disable())) 147 .opts(Options::new().relay_limits(RelayLimits::disable()))
148 .signer(&opts.keys.unwrap_or(nostr::Keys::generate())) 148 .signer(opts.keys.unwrap_or(nostr::Keys::generate()))
149 // .database( 149 // .database(
150 // SQLiteDatabase::open(get_dirs()?.cache_dir().join("nostr-cache.sqlite")). 150 // SQLiteDatabase::open(get_dirs()?.cache_dir().join("nostr-cache.sqlite")).
151 // await?, ) 151 // await?, )