| 9 | /// A single bootstrapper node |
| 10 | #[derive(Debug, Clone, Deserialize)] |
| 11 | pub struct Bootstrapper { |
| 12 | /// Hex-encoded public key (ed25519, 32 bytes) |
| 13 | pub node_public_key: String, |
| 14 | /// Address - either IP:port (e.g., "127.0.0.1:18551") or domain:port (e.g., "node.example.com:18551") |
| 15 | pub address: String, |
| 16 | } |
| 17 | |
| 18 | /// List of bootstrapper nodes loaded from a TOML file |
| 19 | #[derive(Debug, Clone, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected