Skip to content

Commit

Permalink
provider: fix protocol version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
kamirr committed Jul 9, 2024
1 parent bb78bf7 commit 84824bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agent/provider/src/provider_agent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ impl ProviderAgent {
subnet: globals.subnet,
geo_country_code: None,
is_public: status.public_ip.is_some(),
protocol_version: 2,
protocol_version: 3,
})
}

Expand Down Expand Up @@ -643,7 +643,7 @@ mod tests {
subnet: Some("subnet".to_string()),
geo_country_code: None,
is_public: true,
protocol_version: 2,
protocol_version: 3,
};
let inf_node_info = InfNodeInfo::default();
let accounts = Vec::new();
Expand Down

0 comments on commit 84824bc

Please sign in to comment.