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;
}
+1 -1
View File
@@ -637,7 +637,7 @@ async fn slow_feeds_are_disconnected() {
tokio::time::sleep(Duration::from_secs(5)).await;
// Drain anything out and expect to hit a "closed" error, rather than get stuck
// waiting to receive mroe data (or see some other error).
// waiting to receive more data (or see some other error).
loop {
let mut v = Vec::new();
let data =