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

Commit

Permalink
Merge branch 'master' into findPrivacyGroup
Browse files Browse the repository at this point in the history
  • Loading branch information
Puneetha17 authored Jul 13, 2019
2 parents 06e5ca2 + 2c7c85a commit 28b81e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ public ReceiveResponse receive(final ReceiveRequest content) throws Exception {
}

public PrivacyGroup createPrivacyGroup(final CreatePrivacyGroupRequest content) throws Exception {
return executePost(buildPostRequest(JSON, content, "/privacyGroupId"), PrivacyGroup.class);
return executePost(buildPostRequest(JSON, content, "/createPrivacyGroup"), PrivacyGroup.class);
}

public String deletePrivacyGroup(final DeletePrivacyGroupRequest content) throws Exception {
return executePost(buildPostRequest(JSON, content, "/deletePrivacyGroupId"), String.class);
return executePost(buildPostRequest(JSON, content, "/deletePrivacyGroup"), String.class);
}

private Request buildPostRequest(
Expand Down
2 changes: 1 addition & 1 deletion gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dependencyManagement {

dependency 'net.consensys.cava:cava-toml:0.5.0'

dependency 'net.consensys:orion:1.1.0'
dependency 'net.consensys:orion:1.2.0'

dependency 'org.apache.commons:commons-text:1.6'

Expand Down

0 comments on commit 28b81e8

Please sign in to comment.