From bcac57af2ee65218612f4a0fa5f87b9994f76fda Mon Sep 17 00:00:00 2001 From: benjamin <ben@elixxir.io> Date: Wed, 26 Oct 2022 20:28:34 -0700 Subject: [PATCH] fixed the API --- cmix/interface.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmix/interface.go b/cmix/interface.go index e29377974..0e01001ba 100644 --- a/cmix/interface.go +++ b/cmix/interface.go @@ -191,8 +191,9 @@ type Client interface { AddService(clientID *id.ID, newService message.Service, response message.Processor) - // ChangeParallelNodeRegistration . - ChangeParallelNodeRegistration(num int) func() (stoppable.Stoppable, error) + // IncreaseParallelNodeRegistration increases the number of parallel node + // registrations by num + IncreaseParallelNodeRegistration(num int) func() (stoppable.Stoppable, error) // DeleteService deletes a message service. If only a single response is // associated with the preimage, the entire preimage is removed. If there is -- GitLab