From e4356e8f6d03510f22a387eb0fb7bf8dee29d8d1 Mon Sep 17 00:00:00 2001 From: jbhusson <jonah@elixxir.io> Date: Tue, 19 Jul 2022 17:13:12 -0400 Subject: [PATCH] Updates from mr --- bindings/cmix.go | 1 - bindings/e2e.go | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/bindings/cmix.go b/bindings/cmix.go index ea2fbaa22..f37b778dd 100644 --- a/bindings/cmix.go +++ b/bindings/cmix.go @@ -57,7 +57,6 @@ func NewCmix(ndfJSON, storageDir string, password []byte, registrationCode strin // memory and stored as securely as possible using the memguard library. // LoadCmix does not block on network connection, and instead loads and // starts subprocesses to perform network operations. -// TODO: add in custom parameters instead of the default func LoadCmix(storageDir string, password []byte, cmixParamsJSON []byte) (*Cmix, error) { if len(cmixParamsJSON) == 0 { diff --git a/bindings/e2e.go b/bindings/e2e.go index 43d185608..32dacd40d 100644 --- a/bindings/e2e.go +++ b/bindings/e2e.go @@ -78,7 +78,7 @@ func Login(cmixId int, callbacks AuthCallbacks, identity, } // LoginEphemeral creates and returns a new ephemeral E2e object and adds it to the e2eTrackerSingleton -// identity should be created via MakeReceptionIdentity() and passed in here +// identity should be created via MakeReceptionIdentity() or MakeLegacyReceptionIdentity() and passed in here // If callbacks is left nil, a default auth.Callbacks will be used func LoginEphemeral(cmixId int, callbacks AuthCallbacks, identity, e2eParamsJSON []byte) (*E2e, error) { -- GitLab