remove IPv6 till we get some servers with support

This commit is contained in:
ghe0 2025-07-02 19:09:23 +03:00
parent 99470dbac3
commit c486bc049c
Signed by: ghe0
GPG Key ID: 451028EE56A0FBB4

@ -391,8 +391,8 @@ pub struct NodeOffer {
pub disk: u64,
#[tabled(rename = "Public IPv4", display_with = "display_ip_support")]
pub ipv4: bool,
#[tabled(rename = "Public IPv6", display_with = "display_ip_support")]
pub ipv6: bool,
// #[tabled(rename = "Public IPv6", display_with = "display_ip_support")]
// pub ipv6: bool,
#[tabled(rename = "cost/h")]
pub cost_h: f64,
#[tabled(rename = "cost/m")]
@ -449,7 +449,7 @@ pub fn print_node_offers(location: Location) -> Result<Vec<NodeOffer>, Error> {
cost_h: price_per_hour,
cost_m: price_per_month,
ipv4: node.public_ipv4,
ipv6: node.public_ipv6,
// ipv6: node.public_ipv6,
});
}
}