We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52db34b commit 3462a50Copy full SHA for 3462a50
src/jormungandr/jcli/src/jcli_lib/vote/tally/decrypt_tally.rs
@@ -10,7 +10,6 @@ use jormungandr_lib::{
10
interfaces::{PrivateTallyState, Tally},
11
};
12
use rayon::prelude::*;
13
-use serde::Serialize;
14
use std::{convert::TryInto, path::PathBuf};
15
16
#[derive(Parser)]
@@ -37,11 +36,6 @@ pub struct TallyVotePlanWithAllShares {
37
36
output_format: OutputFormat,
38
}
39
40
-#[derive(Serialize)]
41
-struct Output {
42
- result: Vec<u64>,
43
-}
44
-
45
impl TallyVotePlanWithAllShares {
46
pub fn exec(&self) -> Result<(), Error> {
47
let mut vote_plan =
0 commit comments