commit 7cd462b984eddaf5872de7d1f75389fb6c5a5146
parent 230c8bee2dc009bddd3da89b25d9a7eb38d87c4c
Author: xrs <xrs@mail36.net>
Date: Sun, 12 Mar 2017 15:29:34 +0100
test_multicast_multipeer: fix
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/multicast/test_multicast_multipeer.c b/src/multicast/test_multicast_multipeer.c
@@ -345,7 +345,7 @@ multicast_ca (void *cls,
else
{
// Get members keys
- member_pub_key[mc_peer->peer] = GNUNET_new (struct GNUNET_CRYPTO_EddsaPublicKey);
+ member_pub_key[mc_peer->peer] = GNUNET_new (struct GNUNET_CRYPTO_EcdsaPublicKey);
member_key[mc_peer->peer] = GNUNET_CRYPTO_ecdsa_key_create ();
GNUNET_CRYPTO_ecdsa_key_get_public (member_key[mc_peer->peer], member_pub_key[mc_peer->peer]);
@@ -517,7 +517,7 @@ testbed_master (void *cls,
GNUNET_SCHEDULER_add_shutdown (&shutdown_task, NULL); /* Schedule a new task on shutdown */
/* Schedule the shutdown task with a delay of a few Seconds */
- timeout_tid = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 48),
+ timeout_tid = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 60),
&timeout_task, NULL);
}