fixing test
authorMatthias Wachs <wachs@net.in.tum.de>
Tue, 1 Oct 2013 12:04:16 +0000 (12:04 +0000)
committerMatthias Wachs <wachs@net.in.tum.de>
Tue, 1 Oct 2013 12:04:16 +0000 (12:04 +0000)
src/transport/test_plugin_transport.c

index eecb30605a97efd82febea35647f9869cdfdf232..816b40a2ec4bbc810cf032122da5a11f5ca6c6c2 100644 (file)
  */
 
 #include "platform.h"
-#include "gnunet_common.h"
-#include "gnunet_constants.h"
 #include "gnunet_util_lib.h"
 #include "gnunet_hello_lib.h"
 #include "gnunet_peerinfo_service.h"
 #include "gnunet_statistics_service.h"
 #include "gnunet_protocols.h"
-#include "gnunet_signatures.h"
 #include "gnunet_transport_plugin.h"
-
 #include "transport.h"
 
 /**
 /**
  * Our public key.
  */
-static struct GNUNET_CRYPTO_EccPublicSignKey my_public_key;
-
-/**
- * Our identity.
- */
 static struct GNUNET_PeerIdentity my_identity;
 
 /**
@@ -634,12 +625,9 @@ run (void *cls, char *const *args, const char *cfgfile,
     end_badly_now ();
     return;
   }
-  GNUNET_CRYPTO_ecc_key_get_public_for_signature (my_private_key, &my_public_key);
-  GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
-                      &my_identity.hashPubKey);
-
+  GNUNET_CRYPTO_ecc_key_get_public_for_signature (my_private_key, &my_identity.public_key);
 
-  hello = GNUNET_HELLO_create(&my_public_key, NULL, NULL, GNUNET_NO);
+  hello = GNUNET_HELLO_create (&my_identity.public_key, NULL, NULL, GNUNET_NO);
 
   /* load plugins... */
   setup_plugin_environment ();