File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
crates/nostr-sdk/src/client Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 38
38
* mls-memory-storage: add an in-memory implementation for MLS ([ JeffG] at https://github.com/rust-nostr/nostr/pull/839 )
39
39
* mls-sqlite-storage: a sqlite implementation for MLS ([ JeffG] at https://github.com/rust-nostr/nostr/pull/842 )
40
40
* mls: add new crate for implementing MLS messaging ([ JeffG] at https://github.com/rust-nostr/nostr/pull/843 )
41
+ * sdk: add ` Options::pool ` ([ Yuki Kishimoto] )
41
42
42
43
## v0.41.0 - 2025/04/15
43
44
Original file line number Diff line number Diff line change @@ -101,6 +101,13 @@ impl Options {
101
101
self . pool = self . pool . notification_channel_size ( size) ;
102
102
self
103
103
}
104
+
105
+ /// Set relay pool options
106
+ #[ inline]
107
+ pub fn pool ( mut self , opts : RelayPoolOptions ) -> Self {
108
+ self . pool = opts;
109
+ self
110
+ }
104
111
}
105
112
106
113
/// Connection target
You can’t perform that action at this time.
0 commit comments