diff --git a/src/snp/mod.rs b/src/snp/mod.rs index e80c53c..7ba1a10 100644 --- a/src/snp/mod.rs +++ b/src/snp/mod.rs @@ -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, Error> { cost_h: price_per_hour, cost_m: price_per_month, ipv4: node.public_ipv4, - ipv6: node.public_ipv6, + // ipv6: node.public_ipv6, }); } }