invert logic to make name make sense and fix comment typo

This commit is contained in:
James Wilson
2021-08-12 12:47:29 +01:00
parent f887510beb
commit 770dd04b57
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -96,16 +96,16 @@ impl Chain {
}
}
/// Can we add a node? If not, it's because the chain is at its quota.
/// Is the chain the node belongs to overquota?
pub fn is_overquota(&self) -> bool {
// Dynamically determine the max nodes based on the most common
// label so far, in case it changes to something with a different limit.
self.nodes.len() < max_nodes(self.labels.best())
self.nodes.len() >= max_nodes(self.labels.best())
}
/// Assign a node to this chain.
pub fn add_node(&mut self, node: Node) -> AddNodeResult {
if !self.is_overquota() {
if self.is_overquota() {
return AddNodeResult::Overquota;
}