diff --git a/radicle-cli/src/node.rs b/radicle-cli/src/node.rs index af482dca..e5f34fb1 100644 --- a/radicle-cli/src/node.rs +++ b/radicle-cli/src/node.rs @@ -246,7 +246,9 @@ where term::format::secondary(progress.preferred()), term::format::secondary(n_preferred_seeds), term::format::secondary(progress.synced()), - term::format::secondary(min_replicas), + // N.b. the number of replicas could exceed the target if we're + // waiting for preferred seeds + term::format::secondary(min_replicas.max(progress.synced())), )); }) { Ok(result) => {