Skip to content

Commit 42616ab

Browse files
committed
chore(network): change the "retry" status to "out-of-sync"
1 parent 9796eb4 commit 42616ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/network.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ typedef struct {
872872
static const char *network_compute_status(int64_t last_optimistic, int64_t last_confirmed,
873873
int gaps_size, int64_t local_version) {
874874
if (last_optimistic < 0 || last_confirmed < 0) return "error";
875-
if (gaps_size > 0 || last_optimistic < local_version) return "retry";
875+
if (gaps_size > 0 || last_optimistic < local_version) return "out-of-sync";
876876
if (last_optimistic == last_confirmed) return "synced";
877877
return "syncing";
878878
}

0 commit comments

Comments
 (0)