File tree Expand file tree Collapse file tree 3 files changed +168
-83
lines changed
crates/nostr-relay-pool/src/relay Expand file tree Collapse file tree 3 files changed +168
-83
lines changed Original file line number Diff line number Diff line change 27
27
28
28
### Changed
29
29
30
- * ffi(sdk): convert ` RelayPool::handle_notifications ` method to async/future
30
+ * pool: use per-purpose dedicated relay channels ([ Yuki Kishimoto] )
31
+ * ffi(sdk): convert ` RelayPool::handle_notifications ` method to async/future ([ Yuki Kishimoto] )
31
32
32
33
### Added
33
34
Original file line number Diff line number Diff line change @@ -41,6 +41,12 @@ pub enum Error {
41
41
/// Generic timeout
42
42
#[ error( "timeout" ) ]
43
43
Timeout ,
44
+ /// Message response timeout
45
+ #[ error( "Can't send message to the '{channel}' channel" ) ]
46
+ CantSendChannelMessage {
47
+ /// Name of channel
48
+ channel : String ,
49
+ } ,
44
50
/// Message not sent
45
51
#[ error( "message not sent" ) ]
46
52
MessageNotSent ,
You can’t perform that action at this time.
0 commit comments