diff --git a/bindings/cmix.go b/bindings/cmix.go
index ea2fbaa229dcf7d3f349b5068094b954d8dae66c..f37b778dd30299b66e8a3641c1d6f88461325c3a 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 43d18560883bb1793bbbf8b24866ebf593e437fb..32dacd40d9acc4bdc01ec3b9459731d88395dbb0 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) {