Skip to content

Commit

Permalink
removing trailing newline
Browse files Browse the repository at this point in the history
  • Loading branch information
xcthulhu authored and marijanp committed May 25, 2024
1 parent a83fe7a commit 561b754
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/vote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ VOTE_DATA_FILE=$(realpath ${ARGS[3]})
echo "Voting for $VOTE"
echo "--------------------"
start=`date +%s`
cargo run -p acropolis -- vote --user-id-path $USER_ID_PATH --vote $VOTE --receipt-out-path $RECEIPT_FILE
#cargo run -p acropolis -- vote --user-id-path $USER_ID_PATH --vote $VOTE --receipt-out-path $RECEIPT_FILE
end=`date +%s`
echo "--------------------"
echo "...took $((end - start)) seconds"

ELECTION_ID=$(cargo run -p acropolis -- extract-election-id --receipt-path $RECEIPT_FILE)
ELECTION_ID=$(cargo run -p acropolis -- extract-election-id --receipt-path $RECEIPT_FILE | tr '\n' '')

echo "Outputting GROTH16 proof to ${VOTE_DATA_FILE}"
# cargo run -p acropolis -- $VOTE_DATA_FILE
Expand Down

0 comments on commit 561b754

Please sign in to comment.