-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce Anchor peer API and other refractoring (#120)
* Introduce Anchor peer API and other refractoring Signed-off-by: n0s09by <Nidhi.singh0@walmart.com> * Enhancement: Merged two services into one for building writeSet and few other refractor Signed-off-by: n0s09by <Nidhi.singh0@walmart.com> * Enhancement:removed private variable from service Signed-off-by: n0s09by <Nidhi.singh0@walmart.com> --------- Signed-off-by: n0s09by <Nidhi.singh0@walmart.com>
- Loading branch information
1 parent
75664d6
commit 7729b7d
Showing
12 changed files
with
621 additions
and
421 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
...rvice/AddOrgToChannelWriteSetBuilder.java → ...va/rest/client/service/UpdateChannel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
package hlf.java.rest.client.service; | ||
|
||
import hlf.java.rest.client.exception.ServiceException; | ||
import hlf.java.rest.client.model.NewOrgParamsDTO; | ||
import hlf.java.rest.client.model.ChannelUpdateParamsDTO; | ||
import org.hyperledger.fabric.protos.common.Configtx.ConfigGroup; | ||
|
||
public interface AddOrgToChannelWriteSetBuilder { | ||
public interface UpdateChannel { | ||
|
||
ConfigGroup buildWriteset(ConfigGroup readset, NewOrgParamsDTO organizationDetails) | ||
ConfigGroup buildWriteset(ConfigGroup readset, ChannelUpdateParamsDTO organizationDetails) | ||
throws ServiceException; | ||
} |
Oops, something went wrong.