From 65f408abede10ef2cb2800ba720d97650a28a092 Mon Sep 17 00:00:00 2001 From: Algorand Generation Bot Date: Mon, 21 Nov 2022 23:30:10 +0000 Subject: [PATCH] Regenerate code from specification file --- .../v2/client/model/NodeStatusResponse.java | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/main/java/com/algorand/algosdk/v2/client/model/NodeStatusResponse.java b/src/main/java/com/algorand/algosdk/v2/client/model/NodeStatusResponse.java index 48fc8ef40..220edb6a1 100644 --- a/src/main/java/com/algorand/algosdk/v2/client/model/NodeStatusResponse.java +++ b/src/main/java/com/algorand/algosdk/v2/client/model/NodeStatusResponse.java @@ -27,6 +27,13 @@ public class NodeStatusResponse extends PathResponse { @JsonProperty("catchpoint-processed-accounts") public Long catchpointProcessedAccounts; + /** + * The number of key-values (KVs) from the current catchpoint that have been + * processed so far as part of the catchup + */ + @JsonProperty("catchpoint-processed-kvs") + public Long catchpointProcessedKvs; + /** * The total number of accounts included in the current catchpoint */ @@ -40,6 +47,12 @@ public class NodeStatusResponse extends PathResponse { @JsonProperty("catchpoint-total-blocks") public Long catchpointTotalBlocks; + /** + * The total number of key-values (KVs) included in the current catchpoint + */ + @JsonProperty("catchpoint-total-kvs") + public Long catchpointTotalKvs; + /** * The number of accounts from the current catchpoint that have been verified so * far as part of the catchup @@ -47,6 +60,13 @@ public class NodeStatusResponse extends PathResponse { @JsonProperty("catchpoint-verified-accounts") public Long catchpointVerifiedAccounts; + /** + * The number of key-values (KVs) from the current catchpoint that have been + * verified so far as part of the catchup + */ + @JsonProperty("catchpoint-verified-kvs") + public Long catchpointVerifiedKvs; + /** * CatchupTime in nanoseconds */ @@ -113,9 +133,12 @@ public boolean equals(Object o) { if (!Objects.deepEquals(this.catchpoint, other.catchpoint)) return false; if (!Objects.deepEquals(this.catchpointAcquiredBlocks, other.catchpointAcquiredBlocks)) return false; if (!Objects.deepEquals(this.catchpointProcessedAccounts, other.catchpointProcessedAccounts)) return false; + if (!Objects.deepEquals(this.catchpointProcessedKvs, other.catchpointProcessedKvs)) return false; if (!Objects.deepEquals(this.catchpointTotalAccounts, other.catchpointTotalAccounts)) return false; if (!Objects.deepEquals(this.catchpointTotalBlocks, other.catchpointTotalBlocks)) return false; + if (!Objects.deepEquals(this.catchpointTotalKvs, other.catchpointTotalKvs)) return false; if (!Objects.deepEquals(this.catchpointVerifiedAccounts, other.catchpointVerifiedAccounts)) return false; + if (!Objects.deepEquals(this.catchpointVerifiedKvs, other.catchpointVerifiedKvs)) return false; if (!Objects.deepEquals(this.catchupTime, other.catchupTime)) return false; if (!Objects.deepEquals(this.lastCatchpoint, other.lastCatchpoint)) return false; if (!Objects.deepEquals(this.lastRound, other.lastRound)) return false;