Skip to content
Snippets Groups Projects
Commit 1d4b448e authored by Neel Chauhan's avatar Neel Chauhan
Browse files

Remove unused 'address' field from DirSource struct

parent fbf72fd5
No related branches found
No related tags found
1 merge request!149Remove unused 'address' field from DirSource struct
......@@ -333,9 +333,6 @@ struct DirSource {
/// This is the same key as the one that signs the authority's
/// certificates.
identity: RsaIdentity,
/// Address of the authority in string form.
// XXXX why do we have this _and_ IP?
address: String,
/// IP address for the authority
ip: net::IpAddr,
/// HTTP directory port for this authority
......@@ -935,7 +932,6 @@ impl DirSource {
}
let nickname = item.required_arg(0)?.to_string();
let identity = item.parse_arg::<Fingerprint>(1)?.into();
let address = item.required_arg(2)?.to_string();
let ip = item.parse_arg(3)?;
let dir_port = item.parse_arg(4)?;
let or_port = item.parse_arg(5)?;
......@@ -943,7 +939,6 @@ impl DirSource {
Ok(DirSource {
nickname,
identity,
address,
ip,
dir_port,
or_port,
......
......@@ -350,11 +350,6 @@ impl VoterInfoBuilder {
let identity = self
.identity
.ok_or(Error::CannotBuild("Missing identity"))?;
let address = self
.address
.as_ref()
.ok_or(Error::CannotBuild("Missing address"))?
.clone();
let ip = self.ip.ok_or(Error::CannotBuild("Missing IP"))?;
let contact = self
.contact
......@@ -367,7 +362,6 @@ impl VoterInfoBuilder {
let dir_source = DirSource {
nickname,
identity,
address,
ip,
dir_port: self.dir_port,
or_port: self.or_port,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment