Skip to content

Commit

Permalink
remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
abenso committed Jan 10, 2025
1 parent a6d3383 commit bfeaad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/plan/delegator_vote.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ parser_error_t decode_delegator_vote_plan(const bytes_t *data, delegator_vote_pl
CHECK_APP_CANARY()

// Set up fixed size fields
fixed_size_field_t randomizer_arg, value_blinding_arg, proof_blinding_r_arg, proof_blinding_s_arg;
fixed_size_field_t randomizer_arg, proof_blinding_r_arg, proof_blinding_s_arg;
setup_decode_fixed_field(&delegator_vote_plan.randomizer, &randomizer_arg, &delegator_vote->randomizer, 32);
setup_decode_fixed_field(&delegator_vote_plan.proof_blinding_r, &proof_blinding_r_arg, &delegator_vote->proof_blinding_r, 32);
setup_decode_fixed_field(&delegator_vote_plan.proof_blinding_s, &proof_blinding_s_arg, &delegator_vote->proof_blinding_s, 32);
Expand Down

0 comments on commit bfeaad1

Please sign in to comment.