We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf63904 commit fc5327bCopy full SHA for fc5327b
bindings/nostr-ffi/src/error.rs
@@ -139,6 +139,12 @@ impl From<nostr::nips::nip46::Error> for NostrError {
139
}
140
141
142
+impl From<nostr::nips::nip47::Error> for NostrError {
143
+ fn from(e: nostr::nips::nip47::Error) -> NostrError {
144
+ Self::Generic { err: e.to_string() }
145
+ }
146
+}
147
+
148
impl From<nostr::nips::nip53::Error> for NostrError {
149
fn from(e: nostr::nips::nip53::Error) -> NostrError {
150
Self::Generic { err: e.to_string() }
bindings/nostr-ffi/src/nips/mod.rs
@@ -13,6 +13,7 @@ pub mod nip21;
13
pub mod nip26;
14
pub mod nip44;
15
pub mod nip46;
16
+pub mod nip47;
17
pub mod nip48;
18
pub mod nip53;
19
pub mod nip57;
0 commit comments