diff --git a/network/node/register.go b/network/node/register.go
index fd61aa77f17623981f9e3a489920ff3e1dc15401..a4424eb18b16b98f2b1766f68101fcf7c8fe11b4 100644
--- a/network/node/register.go
+++ b/network/node/register.go
@@ -96,10 +96,6 @@ func registerNodes(sender *gateway.Sender, session *storage.Session,
 
 //registerWithNode serves as a helper for RegisterWithNodes
 // It registers a user with a specific in the client's ndf.
-// todo: follow uci. TransmissionRSA and ReceptionRSA are marshaled into JSON as
-//  objects. MAke sure JSON is intelligent enough on unmarshal to read that data.
-//  Also make sure (if unmarshalled correctly) that data makes it's way to storage
-//  as expected.
 func registerWithNode(sender *gateway.Sender, comms RegisterNodeCommsInterface,
 	ngw network.NodeGateway, regSig []byte, registrationTimestampNano int64,
 	uci *user.CryptographicIdentity, store *cmix.Store, rng csprng.Source,
diff --git a/storage/user/registation.go b/storage/user/registation.go
index 5644be40d0558addddff8dd8b6d6433b0c21c07c..4da19b4cd0faf8e83fe22ad2e177afb8d8109897 100644
--- a/storage/user/registation.go
+++ b/storage/user/registation.go
@@ -112,7 +112,6 @@ func (u *User) SetReceptionRegistrationValidationSignature(b []byte) {
 	defer u.rvsMux.Unlock()
 
 	//check if the signature already exists
-	jww.WARN.Printf("receptionValidationSig: %v", u.receptionRegValidationSig)
 	if u.receptionRegValidationSig != nil {
 		jww.FATAL.Panicf("cannot overwrite existing reception Identity Validation Signature")
 	}