File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
crates/nostr-relay-pool/src/relay Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 55
55
56
56
- nostr: handle ` A ` and ` E ` standard tags ([ awiteb] at https://github.com/rust-nostr/nostr/pull/870 )
57
57
- nostr: fix ` nip22::extract_root ` to handle uppercase tags when ` is_root ` is true ([ awiteb] at https://github.com/rust-nostr/nostr/pull/876 )
58
+ - pool: fix wrong conversion from u8 to RelayStatus ([ Yuki Kishimoto] at https://github.com/rust-nostr/nostr/pull/878 )
58
59
59
60
### Deprecated
60
61
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ impl AtomicRelayStatus {
35
35
let val: u8 = self . value . load ( Ordering :: SeqCst ) ;
36
36
match val {
37
37
0 => RelayStatus :: Initialized ,
38
- 1 => RelayStatus :: Connecting ,
38
+ 1 => RelayStatus :: Pending ,
39
39
2 => RelayStatus :: Connecting ,
40
40
3 => RelayStatus :: Connected ,
41
41
4 => RelayStatus :: Disconnected ,
You can’t perform that action at this time.
0 commit comments