diff --git a/p2p/crypto_test.go b/p2p/crypto_test.go
index 6b4afb16a456847b63b941a64885e0f0ce371230..1785b5c458a7e94cf02d8ccb4655a7f4a4428c2d 100644
--- a/p2p/crypto_test.go
+++ b/p2p/crypto_test.go
@@ -31,7 +31,7 @@ func TestCryptoHandshake(t *testing.T) {
 	respNonce, randomPubKey, _, _ := initiator.verifyAuthResp(response)
 
 	fmt.Printf("%x\n%x\n%x\n%x\n%x\n%x\n%x\n%x\n", auth, initNonce, response, remoteRespNonce, remoteInitNonce, remoteRandomPubKey, respNonce, randomPubKey)
-	// initSessionToken, initSecretRW, _ := initiator.newSession(initNonce, respNonce, auth, randomPubKey)
+	initSessionToken, initSecretRW, _ := initiator.newSession(initNonce, respNonce, auth, randomPubKey)
 	// respSessionToken, respSecretRW, _ := responder.newSession(remoteInitNonce, remoteRespNonce, auth, remoteRandomPubKey)
 
 	// if !bytes.Equal(initSessionToken, respSessionToken) {