@@ -27,6 +27,13 @@ public class NodeStatusResponse extends PathResponse {
2727 @ JsonProperty ("catchpoint-processed-accounts" )
2828 public Long catchpointProcessedAccounts ;
2929
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+
3037 /**
3138 * The total number of accounts included in the current catchpoint
3239 */
@@ -40,13 +47,26 @@ public class NodeStatusResponse extends PathResponse {
4047 @ JsonProperty ("catchpoint-total-blocks" )
4148 public Long catchpointTotalBlocks ;
4249
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+
4356 /**
4457 * The number of accounts from the current catchpoint that have been verified so
4558 * far as part of the catchup
4659 */
4760 @ JsonProperty ("catchpoint-verified-accounts" )
4861 public Long catchpointVerifiedAccounts ;
4962
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+
5070 /**
5171 * CatchupTime in nanoseconds
5272 */
@@ -113,9 +133,12 @@ public boolean equals(Object o) {
113133 if (!Objects .deepEquals (this .catchpoint , other .catchpoint )) return false ;
114134 if (!Objects .deepEquals (this .catchpointAcquiredBlocks , other .catchpointAcquiredBlocks )) return false ;
115135 if (!Objects .deepEquals (this .catchpointProcessedAccounts , other .catchpointProcessedAccounts )) return false ;
136+ if (!Objects .deepEquals (this .catchpointProcessedKvs , other .catchpointProcessedKvs )) return false ;
116137 if (!Objects .deepEquals (this .catchpointTotalAccounts , other .catchpointTotalAccounts )) return false ;
117138 if (!Objects .deepEquals (this .catchpointTotalBlocks , other .catchpointTotalBlocks )) return false ;
139+ if (!Objects .deepEquals (this .catchpointTotalKvs , other .catchpointTotalKvs )) return false ;
118140 if (!Objects .deepEquals (this .catchpointVerifiedAccounts , other .catchpointVerifiedAccounts )) return false ;
141+ if (!Objects .deepEquals (this .catchpointVerifiedKvs , other .catchpointVerifiedKvs )) return false ;
119142 if (!Objects .deepEquals (this .catchupTime , other .catchupTime )) return false ;
120143 if (!Objects .deepEquals (this .lastCatchpoint , other .lastCatchpoint )) return false ;
121144 if (!Objects .deepEquals (this .lastRound , other .lastRound )) return false ;
0 commit comments