Starting the mixnode with commands::run::execute

This commit is contained in:
Jedrzej Stuczynski
2020-02-04 12:48:40 +00:00
parent 8caf218aed
commit f858d407ca
4 changed files with 104 additions and 19 deletions
+6 -6
View File
@@ -20,12 +20,12 @@ mod presence;
pub mod runner;
pub struct Config {
announce_address: String,
directory_server: String,
layer: usize,
public_key: MontgomeryPoint,
secret_key: Scalar,
socket_address: SocketAddr,
pub announce_address: String,
pub directory_server: String,
pub layer: usize,
pub public_key: MontgomeryPoint,
pub secret_key: Scalar,
pub socket_address: SocketAddr,
}
impl Config {