Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Commit

Permalink
Fixes invalid JsonGetter, comment
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-richardson committed Aug 1, 2019
1 parent caf6f1a commit bf2f242
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
})
/*
The original deserialised private transaction sent via eea_sendRawTransaction
This class is used if the original request was sent with privateFrom and privateFor
This class is used if the original request was sent with privacyGroupId
*/
public class PrivateTransactionGroupResult extends PrivateTransactionResult {
private final String privacyGroupId;
Expand All @@ -46,7 +46,7 @@ public PrivateTransactionGroupResult(final PrivateTransaction tx) {
this.privacyGroupId = BytesValues.asBase64String(tx.getPrivacyGroupId().get());
}

@JsonGetter(value = "privateFor")
@JsonGetter(value = "privacyGroupId")
public String getPrivacyGroupId() {
return privacyGroupId;
}
Expand Down

0 comments on commit bf2f242

Please sign in to comment.