Skip to content

Commit b261754

Browse files
committed
feat: PR comments resolved.
Signed-off-by: Gaurav Goel <[email protected]>
1 parent 7a9b427 commit b261754

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
11
package org.torusresearch.torusutils.helpers;
22

3+
import org.jetbrains.annotations.NotNull;
4+
35
public class IsNewKeyResponse {
46

57
public boolean isNewKey;
68
public String publicKeyX;
79

8-
public IsNewKeyResponse(boolean isNewKey, String publicKeyX) {
10+
public IsNewKeyResponse(@NotNull boolean isNewKey, @NotNull String publicKeyX) {
911
this.isNewKey = isNewKey;
1012
this.publicKeyX = publicKeyX;
1113
}
12-
13-
public boolean isNewKey() {
14-
return isNewKey;
15-
}
16-
17-
public String getPublicKeyX() {
18-
return publicKeyX;
19-
}
2014
}

src/main/java/org/torusresearch/torusutils/helpers/NodeUtils.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,9 @@ public static TorusKey retrieveOrImportShare(@NotNull String legacyMetadataHost,
356356
ArrayList<IsNewKeyResponse> isNewKeys = new ArrayList<>();
357357

358358
for (ShareRequestResult item : shareResponses) {
359-
isNewKeys.add(new IsNewKeyResponse(item.is_new_key, item.keys[0].public_key.getX()));
359+
if (item.keys.length > 0 && item.keys[0] != null) {
360+
isNewKeys.add(new IsNewKeyResponse(item.is_new_key, item.keys[0].public_key.getX()));
361+
}
360362

361363
if (item.session_token_sigs != null && item.session_token_sigs.length > 0) {
362364
if (item.session_token_sig_metadata != null && item.session_token_sig_metadata.length > 0) {
@@ -445,7 +447,7 @@ public static TorusKey retrieveOrImportShare(@NotNull String legacyMetadataHost,
445447

446448
boolean isNewKey = false;
447449
for (IsNewKeyResponse item : isNewKeys) {
448-
if (item.isNewKey() && item.getPublicKeyX().equalsIgnoreCase(thresholdPublicKey.getX())) {
450+
if (item.isNewKey && item.publicKeyX.equalsIgnoreCase(thresholdPublicKey.getX())) {
449451
isNewKey = true;
450452
}
451453
}

0 commit comments

Comments
 (0)