@@ -35,7 +35,7 @@ public RegistryContract(Registry registry) {
3535 public Optional <OrganizationRegistration > getOrganizationById (String orgId ) {
3636 return wrapExceptions (() -> {
3737 log .info ("Get organization from Registry, orgId: {}" , orgId );
38- Tuple7 <Boolean , byte [], byte [], String , List <String >, List < byte [] >, List <byte []>> result =
38+ Tuple6 <Boolean , byte [], byte [], String , List <String >, List <byte []>> result =
3939 registry .getOrganizationById (strToBytes32 (orgId )).send ();
4040 if (result .getValue1 ()) {
4141 OrganizationRegistration .Builder builder = OrganizationRegistration .newBuilder ()
@@ -64,7 +64,7 @@ public Optional<OrganizationRegistration> getOrganizationById(String orgId) {
6464 public Optional <ServiceRegistration > getServiceRegistrationById (String orgId , String serviceId ) {
6565 return wrapExceptions (() -> {
6666 log .info ("Get service from Registry, orgId: {}, serviceId: {}" , orgId , serviceId );
67- Tuple4 <Boolean , byte [], byte [], List < byte []> > result =
67+ Tuple3 <Boolean , byte [], byte []> result =
6868 registry .getServiceRegistrationById (strToBytes32 (orgId ), strToBytes32 (serviceId )).send ();
6969 if (result .getValue1 ()) {
7070 ServiceRegistration registration = ServiceRegistration .newBuilder ()
0 commit comments