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 018689a commit 1e9d379Copy full SHA for 1e9d379
rust/Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "freenet-stdlib"
3
-version = "0.1.10"
+version = "0.1.11"
4
edition = "2021"
5
rust-version = "1.71.1"
6
publish = true
rust/src/client_api/client_events.rs
@@ -760,7 +760,8 @@ pub struct NodeDiagnosticsResponse {
760
pub struct NodeInfo {
761
pub peer_id: String,
762
pub is_gateway: bool,
763
- pub location: String,
+ pub location: Option<String>,
764
+ pub listening_address: Option<String>,
765
pub uptime_seconds: u64,
766
}
767
0 commit comments