Remove unused fields
This commit is contained in:
parent
ca8e830f0a
commit
d86b41e039
1 changed files with 0 additions and 4 deletions
|
@ -60,13 +60,11 @@ pub struct Options {
|
||||||
|
|
||||||
pub struct Cli {
|
pub struct Cli {
|
||||||
options: Options,
|
options: Options,
|
||||||
keys: serde_json::Value,
|
|
||||||
private_key: BigNum,
|
private_key: BigNum,
|
||||||
gen_order: BigNum,
|
gen_order: BigNum,
|
||||||
gen_point: EcPoint,
|
gen_point: EcPoint,
|
||||||
pub_point: EcPoint,
|
pub_point: EcPoint,
|
||||||
e_curve: EcGroup,
|
e_curve: EcGroup,
|
||||||
product_key: Option<String>,
|
|
||||||
count: u32,
|
count: u32,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -117,13 +115,11 @@ impl Cli {
|
||||||
|
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
options,
|
options,
|
||||||
keys,
|
|
||||||
private_key,
|
private_key,
|
||||||
gen_order,
|
gen_order,
|
||||||
gen_point,
|
gen_point,
|
||||||
pub_point,
|
pub_point,
|
||||||
e_curve,
|
e_curve,
|
||||||
product_key: None,
|
|
||||||
count: 0,
|
count: 0,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue