@@ -27,6 +27,13 @@ public class NodeStatusResponse extends PathResponse {
27
27
@ JsonProperty ("catchpoint-processed-accounts" )
28
28
public Long catchpointProcessedAccounts ;
29
29
30
+ /**
31
+ * The number of key-values (KVs) from the current catchpoint that have been
32
+ * processed so far as part of the catchup
33
+ */
34
+ @ JsonProperty ("catchpoint-processed-kvs" )
35
+ public Long catchpointProcessedKvs ;
36
+
30
37
/**
31
38
* The total number of accounts included in the current catchpoint
32
39
*/
@@ -40,13 +47,26 @@ public class NodeStatusResponse extends PathResponse {
40
47
@ JsonProperty ("catchpoint-total-blocks" )
41
48
public Long catchpointTotalBlocks ;
42
49
50
+ /**
51
+ * The total number of key-values (KVs) included in the current catchpoint
52
+ */
53
+ @ JsonProperty ("catchpoint-total-kvs" )
54
+ public Long catchpointTotalKvs ;
55
+
43
56
/**
44
57
* The number of accounts from the current catchpoint that have been verified so
45
58
* far as part of the catchup
46
59
*/
47
60
@ JsonProperty ("catchpoint-verified-accounts" )
48
61
public Long catchpointVerifiedAccounts ;
49
62
63
+ /**
64
+ * The number of key-values (KVs) from the current catchpoint that have been
65
+ * verified so far as part of the catchup
66
+ */
67
+ @ JsonProperty ("catchpoint-verified-kvs" )
68
+ public Long catchpointVerifiedKvs ;
69
+
50
70
/**
51
71
* CatchupTime in nanoseconds
52
72
*/
@@ -113,9 +133,12 @@ public boolean equals(Object o) {
113
133
if (!Objects .deepEquals (this .catchpoint , other .catchpoint )) return false ;
114
134
if (!Objects .deepEquals (this .catchpointAcquiredBlocks , other .catchpointAcquiredBlocks )) return false ;
115
135
if (!Objects .deepEquals (this .catchpointProcessedAccounts , other .catchpointProcessedAccounts )) return false ;
136
+ if (!Objects .deepEquals (this .catchpointProcessedKvs , other .catchpointProcessedKvs )) return false ;
116
137
if (!Objects .deepEquals (this .catchpointTotalAccounts , other .catchpointTotalAccounts )) return false ;
117
138
if (!Objects .deepEquals (this .catchpointTotalBlocks , other .catchpointTotalBlocks )) return false ;
139
+ if (!Objects .deepEquals (this .catchpointTotalKvs , other .catchpointTotalKvs )) return false ;
118
140
if (!Objects .deepEquals (this .catchpointVerifiedAccounts , other .catchpointVerifiedAccounts )) return false ;
141
+ if (!Objects .deepEquals (this .catchpointVerifiedKvs , other .catchpointVerifiedKvs )) return false ;
119
142
if (!Objects .deepEquals (this .catchupTime , other .catchupTime )) return false ;
120
143
if (!Objects .deepEquals (this .lastCatchpoint , other .lastCatchpoint )) return false ;
121
144
if (!Objects .deepEquals (this .lastRound , other .lastRound )) return false ;
0 commit comments