We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9796eb4 commit 42616abCopy full SHA for 42616ab
src/network.c
@@ -872,7 +872,7 @@ typedef struct {
872
static const char *network_compute_status(int64_t last_optimistic, int64_t last_confirmed,
873
int gaps_size, int64_t local_version) {
874
if (last_optimistic < 0 || last_confirmed < 0) return "error";
875
- if (gaps_size > 0 || last_optimistic < local_version) return "retry";
+ if (gaps_size > 0 || last_optimistic < local_version) return "out-of-sync";
876
if (last_optimistic == last_confirmed) return "synced";
877
return "syncing";
878
}
0 commit comments