From 63152f3845f732fd81b7eaf98b480967103e895b Mon Sep 17 00:00:00 2001 From: benjamin <ben@elixxir.io> Date: Wed, 26 Oct 2022 20:25:45 -0700 Subject: [PATCH] implemented interface, need to implement api --- cmix/interface.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmix/interface.go b/cmix/interface.go index 1d0bfdaeb..a8d5df525 100644 --- a/cmix/interface.go +++ b/cmix/interface.go @@ -191,6 +191,9 @@ type Client interface { AddService(clientID *id.ID, newService message.Service, response message.Processor) + // ChangeParallelNodeRegistration . + ChangeParallelNodeRegistration(num int) stoppable.Single + // DeleteService deletes a message service. If only a single response is // associated with the preimage, the entire preimage is removed. If there is // more than one response, only the given response is removed. If nil is -- GitLab