From 486f06ae791ba44490755d38061ecf2e97cc0896 Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Mon, 19 Sep 2016 10:48:31 -0600 Subject: [PATCH] Coordinator shouldn't construct the keypair, verifier can. --- src/coordinator.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/coordinator.rs b/src/coordinator.rs index 64819af..2327105 100644 --- a/src/coordinator.rs +++ b/src/coordinator.rs @@ -230,13 +230,7 @@ impl ConnectionHandler { } } - info!("MPC complete, producing keypair."); - - let kp = keypair(&cs, &stage1, &stage2, &stage3); - - kp.write_to_disk(); - - info!("Keypair written to disk."); + info!("MPC complete, flushing transcript to disk."); transcript.flush().unwrap();